mirror of
https://github.com/oceanprotocol/barge.git
synced 2024-10-31 23:55:18 +01:00
43 lines
965 B
YAML
43 lines
965 B
YAML
version: '3'
|
|
services:
|
|
graph-node:
|
|
image: graphprotocol/graph-node:v0.25.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}'
|
|
RUST_LOG: info
|
|
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
|
|
volumes:
|
|
graphpgsql:
|
|
|