File tree Expand file tree Collapse file tree
examples/ethereum-basic-event-handlers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,16 +2,16 @@ services:
22 hardhat :
33 build : ./hardhat
44 ports :
5- - " 8545:8545"
5+ - ' 8545:8545'
66 graph-node :
77 image : graphprotocol/graph-node:latest
88 platform : linux/amd64
99 ports :
10- - " 8000:8000"
11- - " 8001:8001"
12- - " 8020:8020"
13- - " 8030:8030"
14- - " 8040:8040"
10+ - ' 8000:8000'
11+ - ' 8001:8001'
12+ - ' 8020:8020'
13+ - ' 8030:8030'
14+ - ' 8040:8040'
1515 depends_on :
1616 hardhat :
1717 condition : service_started
@@ -24,36 +24,36 @@ services:
2424 postgres_user : graph-node
2525 postgres_pass : let-me-in
2626 postgres_db : graph-node
27- ipfs : " ipfs:5001"
28- ethereum : " test:http://hardhat:8545"
27+ ipfs : ' ipfs:5001'
28+ ethereum : ' test:http://hardhat:8545'
2929 GRAPH_LOG : info
3030 GRAPH_ALLOW_NON_DETERMINISTIC_IPFS : 1
3131 healthcheck :
32- test : [" CMD-SHELL", " nc -z localhost 8030 || exit 1" ]
32+ test : [' CMD-SHELL', ' nc -z localhost 8030 || exit 1' ]
3333 interval : 5s
3434 timeout : 5s
3535 retries : 30
3636 start_period : 10s
3737 ipfs :
3838 image : ipfs/kubo:v0.19.1
3939 ports :
40- - " 5001:5001"
40+ - ' 5001:5001'
4141 volumes :
4242 - ipfs-data:/data/ipfs
4343 postgres :
4444 image : postgres
4545 ports :
46- - " 5432:5432"
47- command : [" postgres", " -cshared_preload_libraries=pg_stat_statements" ]
46+ - ' 5432:5432'
47+ command : [' postgres', ' -cshared_preload_libraries=pg_stat_statements' ]
4848 environment :
4949 POSTGRES_USER : graph-node
5050 POSTGRES_PASSWORD : let-me-in
5151 POSTGRES_DB : graph-node
52- POSTGRES_INITDB_ARGS : " -E UTF8 --locale=C"
52+ POSTGRES_INITDB_ARGS : ' -E UTF8 --locale=C'
5353 volumes :
5454 - postgres-data:/var/lib/postgresql/data
5555 healthcheck :
56- test : [" CMD-SHELL", " pg_isready -U graph-node" ]
56+ test : [' CMD-SHELL', ' pg_isready -U graph-node' ]
5757 interval : 5s
5858 timeout : 5s
5959 retries : 30
You can’t perform that action at this time.
0 commit comments