2022-10-14 03:18:39 +00:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
|
|
|
fixturenet-eth-bootnode-geth:
|
|
|
|
hostname: fixturenet-eth-bootnode-geth
|
2022-10-14 18:48:54 +00:00
|
|
|
env_file:
|
|
|
|
- ../config/fixturenet-eth/fixturenet-eth.env
|
2022-10-14 03:18:39 +00:00
|
|
|
environment:
|
|
|
|
RUN_BOOTNODE: "true"
|
|
|
|
image: cerc/fixturenet-eth-geth:local
|
|
|
|
|
|
|
|
fixturenet-eth-geth-1:
|
|
|
|
hostname: fixturenet-eth-geth-1
|
2022-10-14 18:48:54 +00:00
|
|
|
env_file:
|
|
|
|
- ../config/fixturenet-eth/fixturenet-eth.env
|
2022-10-14 03:18:39 +00:00
|
|
|
image: cerc/fixturenet-eth-geth:local
|
2022-11-03 22:31:14 +00:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "nc", "-v", "localhost", "8545"]
|
|
|
|
interval: 30s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 10
|
|
|
|
start_period: 3s
|
2022-10-14 03:18:39 +00:00
|
|
|
depends_on:
|
|
|
|
- fixturenet-eth-bootnode-geth
|
|
|
|
ports:
|
|
|
|
- "8545"
|
|
|
|
|
|
|
|
fixturenet-eth-geth-2:
|
|
|
|
hostname: fixturenet-eth-geth-2
|
2022-11-01 17:44:33 +00:00
|
|
|
environment:
|
|
|
|
CERC_RUN_STATEDIFF: "true"
|
|
|
|
CERC_STATEDIFF_DB_NODE_ID: 2
|
2022-11-03 22:31:14 +00:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "nc", "-v", "localhost", "8545"]
|
|
|
|
interval: 30s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 10
|
|
|
|
start_period: 3s
|
2022-10-14 18:48:54 +00:00
|
|
|
env_file:
|
|
|
|
- ../config/fixturenet-eth/fixturenet-eth.env
|
2022-10-14 03:18:39 +00:00
|
|
|
image: cerc/fixturenet-eth-geth:local
|
|
|
|
depends_on:
|
2022-11-01 17:44:33 +00:00
|
|
|
- migrations
|
2022-10-14 03:18:39 +00:00
|
|
|
- fixturenet-eth-bootnode-geth
|
|
|
|
|
|
|
|
fixturenet-eth-bootnode-lighthouse:
|
|
|
|
hostname: fixturenet-eth-bootnode-lighthouse
|
|
|
|
environment:
|
|
|
|
RUN_BOOTNODE: "true"
|
|
|
|
image: cerc/fixturenet-eth-lighthouse:local
|
|
|
|
|
|
|
|
fixturenet-eth-lighthouse-1:
|
|
|
|
hostname: fixturenet-eth-lighthouse-1
|
2022-11-03 22:31:14 +00:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "wget", "--tries=1", "--connect-timeout=1", "--quiet", "-O", "-", "http://localhost:8001/eth/v2/beacon/blocks/head"]
|
|
|
|
interval: 30s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 10
|
|
|
|
start_period: 30s
|
2022-10-14 18:48:54 +00:00
|
|
|
env_file:
|
|
|
|
- ../config/fixturenet-eth/fixturenet-eth.env
|
2022-10-14 03:18:39 +00:00
|
|
|
environment:
|
|
|
|
NODE_NUMBER: "1"
|
|
|
|
ETH1_ENDPOINT: "http://fixturenet-eth-geth-1:8545"
|
|
|
|
EXECUTION_ENDPOINT: "http://fixturenet-eth-geth-1:8551"
|
|
|
|
image: cerc/fixturenet-eth-lighthouse:local
|
|
|
|
depends_on:
|
2022-11-03 22:31:14 +00:00
|
|
|
fixturenet-eth-bootnode-lighthouse:
|
|
|
|
condition: service_started
|
|
|
|
fixturenet-eth-geth-1:
|
|
|
|
condition: service_healthy
|
2022-10-14 03:18:39 +00:00
|
|
|
ports:
|
|
|
|
- "8001"
|
|
|
|
|
|
|
|
fixturenet-eth-lighthouse-2:
|
|
|
|
hostname: fixturenet-eth-lighthouse-2
|
2022-11-03 22:31:14 +00:00
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "wget", "--tries=1", "--connect-timeout=1", "--quiet", "-O", "-", "http://localhost:8001/eth/v2/beacon/blocks/head"]
|
|
|
|
interval: 30s
|
|
|
|
timeout: 10s
|
|
|
|
retries: 10
|
|
|
|
start_period: 30s
|
2022-10-14 18:48:54 +00:00
|
|
|
env_file:
|
|
|
|
- ../config/fixturenet-eth/fixturenet-eth.env
|
2022-10-14 03:18:39 +00:00
|
|
|
environment:
|
|
|
|
NODE_NUMBER: "2"
|
|
|
|
ETH1_ENDPOINT: "http://fixturenet-eth-geth-2:8545"
|
|
|
|
EXECUTION_ENDPOINT: "http://fixturenet-eth-geth-2:8551"
|
|
|
|
LIGHTHOUSE_GENESIS_STATE_URL: "http://fixturenet-eth-lighthouse-1:8001/eth/v2/debug/beacon/states/0"
|
|
|
|
image: cerc/fixturenet-eth-lighthouse:local
|
|
|
|
depends_on:
|
2022-11-03 22:31:14 +00:00
|
|
|
fixturenet-eth-bootnode-lighthouse:
|
|
|
|
condition: service_started
|
|
|
|
fixturenet-eth-geth-2:
|
|
|
|
condition: service_healthy
|