barge/compose-files/thegraph.yml

59 lines
1.4 KiB
YAML
Raw Normal View History

2021-04-09 11:44:50 +02:00
version: '3'
services:
graph-node:
2023-11-21 18:59:51 +01:00
image: graphprotocol/graph-node:${GRAPH_NODE_VERSION:-latest}
2021-04-09 11:44:50 +02:00
ports:
- '9000:8000'
- '9001:8001'
- '9020:8020'
- '9030:8030'
- '9040:8040'
networks:
backend:
ipv4_address: 172.15.0.15
depends_on:
- ipfs
- postgres
- ocean-contracts
environment:
postgres_host: 172.15.0.17
postgres_user: graph-node
postgres_pass: let-me-in
postgres_db: graph-node
ipfs: '172.15.0.16:5001'
2022-02-12 14:18:59 +01:00
ethereum: 'development:${NETWORK_RPC_URL}'
2022-09-22 22:23:05 +02:00
RUST_LOG: ${SUBGRAPH_LOG_LEVEL}
2021-04-09 11:44:50 +02:00
postgres:
image: postgres
ports:
- '5432:5432'
networks:
backend:
ipv4_address: 172.15.0.17
command: ['postgres', '-cshared_preload_libraries=pg_stat_statements']
environment:
POSTGRES_USER: graph-node
POSTGRES_PASSWORD: let-me-in
POSTGRES_DB: graph-node
2023-11-21 19:12:47 +01:00
POSTGRES_INITDB_ARGS: '--encoding=UTF-8 --lc-collate=C --lc-ctype=C'
2021-04-09 11:44:50 +02:00
volumes:
- graphpgsql:/var/lib/postgresql/data
2022-02-12 17:34:01 +01:00
subgraph:
image: oceanprotocol/subgraph:${SUBGRAPH_VERSION:-latest}
networks:
backend:
ipv4_address: 172.15.0.19
environment:
DEPLOY_SUBGRAPH: ${DEPLOY_SUBGRAPH}
depends_on:
- graph-node
- ocean-contracts
volumes:
- ${OCEAN_ARTIFACTS_FOLDER}:/ocean-contracts/artifacts/
2023-05-22 09:06:10 +02:00
- ${OCEAN_SUBGRAPH_FOLDER}:/ocean-subgraph/
2021-04-09 11:44:50 +02:00
volumes:
graphpgsql:
2022-02-12 17:34:01 +01:00