forked from cerc-io/stack-orchestrator
Fixes
This commit is contained in:
@@ -6,11 +6,7 @@ services:
|
||||
depends_on:
|
||||
ipld-eth-db:
|
||||
condition: service_healthy
|
||||
build:
|
||||
context: ../../
|
||||
dockerfile: ./docker/local/go-ethereum.Dockerfile
|
||||
args:
|
||||
GENESIS_FILE_PATH: ${genesis_file_path}
|
||||
image: vulcanize/go-ethereum-foundry
|
||||
healthcheck:
|
||||
test: ["CMD", "nc", "-v", "localhost", "8545"]
|
||||
interval: 30s
|
||||
|
||||
@@ -2,7 +2,7 @@ version: "3.2"
|
||||
services:
|
||||
ipld-eth-beacon-db:
|
||||
restart: always
|
||||
image: vulcanize/ipld-eth-beacon-db:v0.2.0
|
||||
image: vulcanize/ipld-eth-beacon-db:local
|
||||
environment:
|
||||
POSTGRES_USER: vdbm
|
||||
POSTGRES_DB: vulcanize_testing
|
||||
|
||||
@@ -5,7 +5,7 @@ services:
|
||||
depends_on:
|
||||
- ipld-eth-beacon-db
|
||||
- lighthouse
|
||||
image: vulcanize/ipld-eth-beacon-indexer:v0.2.0
|
||||
image: vulcanize/ipld-eth-beacon-indexer:local
|
||||
volumes:
|
||||
- type: bind
|
||||
source: ${eth_beacon_config_file}
|
||||
|
||||
@@ -5,7 +5,7 @@ services:
|
||||
depends_on:
|
||||
ipld-eth-db:
|
||||
condition: service_healthy
|
||||
image: vulcanize/ipld-eth-server:v4.0.5-alpha
|
||||
image: vulcanize/ipld-eth-server:local
|
||||
environment:
|
||||
IPLD_SERVER_GRAPHQL: "true"
|
||||
IPLD_POSTGRAPHILEPATH: http://graphql:5000
|
||||
@@ -46,4 +46,3 @@ services:
|
||||
SCHEMA: public,eth
|
||||
ports:
|
||||
- "127.0.0.1:5000:5000"
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
version: "3.2"
|
||||
services:
|
||||
lighthouse:
|
||||
restart: always
|
||||
image: vulcanize/lighthouse:local
|
||||
environment:
|
||||
- NETWORK=mainnet
|
||||
volumes:
|
||||
- lighthouse_db:/root/.lighthouse
|
||||
ports:
|
||||
- 127.0.0.1:5052:5052
|
||||
- 9000:9000/udp
|
||||
- 9000:9000/tcp
|
||||
command: ["tail", "-f", "/dev/null"]
|
||||
|
||||
volumes:
|
||||
lighthouse_db:
|
||||
Reference in New Issue
Block a user