mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-11-01 08:05:17 +01:00
57 lines
1.3 KiB
YAML
57 lines
1.3 KiB
YAML
version: '3'
|
|
services:
|
|
graph-node:
|
|
image: graphprotocol/graph-node:v0.26.0
|
|
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'
|
|
ethereum: 'development:${NETWORK_RPC_URL}'
|
|
SUBGRAPH_LOG_LEVEL: ${SUBGRAPH_LOG_LEVEL}
|
|
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
|
|
volumes:
|
|
- graphpgsql:/var/lib/postgresql/data
|
|
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/
|
|
volumes:
|
|
graphpgsql:
|
|
|
|
|
|
|