Update mainnet-eth stack
This commit is contained in:
parent
60d915ed6d
commit
56c9e5b717
56
app/data/compose/docker-compose-mainnet-eth.yml
Normal file
56
app/data/compose/docker-compose-mainnet-eth.yml
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
mainnet-eth-geth-1:
|
||||||
|
restart: always
|
||||||
|
hostname: mainnet-eth-geth-1
|
||||||
|
cap_add:
|
||||||
|
- SYS_PTRACE
|
||||||
|
environment:
|
||||||
|
CERC_REMOTE_DEBUG: "true"
|
||||||
|
CERC_RUN_STATEDIFF: ${CERC_RUN_STATEDIFF:-detect}
|
||||||
|
CERC_STATEDIFF_DB_NODE_ID: 1
|
||||||
|
CERC_SCRIPT_DEBUG: ${CERC_SCRIPT_DEBUG}
|
||||||
|
env_file:
|
||||||
|
- ../config/fixturenet-eth/fixturenet-eth.env
|
||||||
|
image: cerc/go-ethereum:local
|
||||||
|
volumes:
|
||||||
|
- mainnet_eth_geth_1_data:/root/ethdata
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "nc", "-v", "localhost", "8545"]
|
||||||
|
interval: 30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 10
|
||||||
|
start_period: 3s
|
||||||
|
ports:
|
||||||
|
- "8545"
|
||||||
|
- "40000"
|
||||||
|
- "6060"
|
||||||
|
|
||||||
|
mainnet-eth-lighthouse-1:
|
||||||
|
restart: always
|
||||||
|
hostname: mainnet-eth-lighthouse-1
|
||||||
|
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
|
||||||
|
env_file:
|
||||||
|
- ../config/fixturenet-eth/fixturenet-eth.env
|
||||||
|
environment:
|
||||||
|
NODE_NUMBER: "1"
|
||||||
|
ETH1_ENDPOINT: "http://mainnet-eth-geth-1:8545"
|
||||||
|
EXECUTION_ENDPOINT: "http://mainnet-eth-geth-1:8551"
|
||||||
|
image: cerc/lighthouse:local
|
||||||
|
volumes:
|
||||||
|
- mainnet_eth_lighthouse_1_data:/opt/testnet/build/cl
|
||||||
|
depends_on:
|
||||||
|
mainnet-eth-geth-1:
|
||||||
|
condition: service_healthy
|
||||||
|
ports:
|
||||||
|
- "8001"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
mainnet_eth_geth_1_data:
|
||||||
|
mainnet_eth_lighthouse_1_data:
|
@ -1,6 +1,6 @@
|
|||||||
version: "1.1"
|
version: "1.1"
|
||||||
name: fixturenet-eth
|
name: mainnet-eth
|
||||||
decription: "Ethereum Fixturenet"
|
decription: "Ethereum Mainnet"
|
||||||
repos:
|
repos:
|
||||||
- github.com/cerc-io/go-ethereum
|
- github.com/cerc-io/go-ethereum
|
||||||
- github.com/cerc-io/lighthouse
|
- github.com/cerc-io/lighthouse
|
||||||
@ -9,9 +9,7 @@ containers:
|
|||||||
- cerc/go-ethereum
|
- cerc/go-ethereum
|
||||||
- cerc/lighthouse
|
- cerc/lighthouse
|
||||||
- cerc/lighthouse-cli
|
- cerc/lighthouse-cli
|
||||||
- cerc/fixturenet-eth-geth
|
|
||||||
- cerc/fixturenet-eth-lighthouse
|
|
||||||
- cerc/foundry
|
- cerc/foundry
|
||||||
pods:
|
pods:
|
||||||
- fixturenet-eth
|
- mainnet-eth
|
||||||
- foundry
|
- foundry
|
||||||
|
Loading…
Reference in New Issue
Block a user