diff --git a/localenv/docker-compose.yaml b/localenv/docker-compose.yaml index c5ccd7dc10..5ca0e1076b 100644 --- a/localenv/docker-compose.yaml +++ b/localenv/docker-compose.yaml @@ -28,6 +28,7 @@ services: ethereum: localhost:http://anvil:8545 GRAPH_LOG: debug ETHEREUM_REORG_THRESHOLD: 0 + init: true ipfs: image: ipfs/kubo:v0.27.0 @@ -74,6 +75,7 @@ services: IPFS_URL: http://ipfs:5001 SUBGRAPH_ADMIN_URL: http://graph-node:8020 SUBGRAPH_QUERY_URL: http://graph-node:8000 + init: true networks: octant: diff --git a/localenv/multideployer/entrypoint.sh b/localenv/multideployer/entrypoint.sh index 59ab1d93e1..88182cff15 100755 --- a/localenv/multideployer/entrypoint.sh +++ b/localenv/multideployer/entrypoint.sh @@ -18,4 +18,4 @@ wait_for_rpc echo "" echo "anvil is ready!" -python3 /app/server.py +exec python3 /app/server.py