fc522140ba
* Initial version * Update readme * Build op-geth container * Add optimism go code containers * Add optimism contracts container * Update optimism contracts container build * Add fixturenet-optimism-contracts service to deploy L1 contracts * Add fixturenet-optimism op-node and op-geth * Avoid reading addresses from a file when sending balances * Fixes for running op-geth container * Fix image name and command in optimism-contracts service * Add a healthcheck to lighthouse bootnode to avoid failing eth txs * Avoid using hardhat ethers to send balances from an account * Update script to send balance to L1 bridge proxy contract * Implement op-node container * Wait for a finalized L1 block to exist * Fix for running op-batcher * Add a todo for restart support * Integrate optimism-contracts service and update instructions * Update clean-up to remove docker volumes * Update volume access permissions * Add a todo to replace foundry usage with web3 js * Add known issues * Fix README * Fix indentation * Update known issues --------- Co-authored-by: David Boreham <david@bozemanpas.com> Co-authored-by: David Boreham <david@bozemanpass.com> Co-authored-by: nabarun <nabarun@deepstacksoft.com>
115 lines
3.3 KiB
YAML
115 lines
3.3 KiB
YAML
version: '3.7'
|
|
|
|
services:
|
|
fixturenet-eth-bootnode-geth:
|
|
hostname: fixturenet-eth-bootnode-geth
|
|
env_file:
|
|
- ../config/fixturenet-eth/fixturenet-eth.env
|
|
environment:
|
|
RUN_BOOTNODE: "true"
|
|
image: cerc/fixturenet-eth-geth:local
|
|
ports:
|
|
- "9898"
|
|
- "30303"
|
|
|
|
fixturenet-eth-geth-1:
|
|
hostname: fixturenet-eth-geth-1
|
|
cap_add:
|
|
- SYS_PTRACE
|
|
environment:
|
|
CERC_REMOTE_DEBUG: "true"
|
|
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/fixturenet-eth-geth:local
|
|
volumes:
|
|
- fixturenet-geth-accounts:/opt/testnet/build/el
|
|
healthcheck:
|
|
test: ["CMD", "nc", "-v", "localhost", "8545"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 10
|
|
start_period: 3s
|
|
depends_on:
|
|
- fixturenet-eth-bootnode-geth
|
|
ports:
|
|
- "8545"
|
|
- "40000"
|
|
- "6060"
|
|
|
|
fixturenet-eth-geth-2:
|
|
hostname: fixturenet-eth-geth-2
|
|
healthcheck:
|
|
test: ["CMD", "nc", "-v", "localhost", "8545"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 10
|
|
start_period: 3s
|
|
env_file:
|
|
- ../config/fixturenet-eth/fixturenet-eth.env
|
|
image: cerc/fixturenet-eth-geth:local
|
|
depends_on:
|
|
- fixturenet-eth-bootnode-geth
|
|
|
|
fixturenet-eth-bootnode-lighthouse:
|
|
hostname: fixturenet-eth-bootnode-lighthouse
|
|
environment:
|
|
RUN_BOOTNODE: "true"
|
|
image: cerc/fixturenet-eth-lighthouse:local
|
|
healthcheck:
|
|
test: ["CMD", "/scripts/status-internal.sh"]
|
|
interval: 10s
|
|
timeout: 100s
|
|
retries: 3
|
|
start_period: 15s
|
|
|
|
fixturenet-eth-lighthouse-1:
|
|
hostname: fixturenet-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://fixturenet-eth-geth-1:8545"
|
|
EXECUTION_ENDPOINT: "http://fixturenet-eth-geth-1:8551"
|
|
image: cerc/fixturenet-eth-lighthouse:local
|
|
depends_on:
|
|
fixturenet-eth-bootnode-lighthouse:
|
|
condition: service_started
|
|
fixturenet-eth-geth-1:
|
|
condition: service_healthy
|
|
ports:
|
|
- "8001"
|
|
|
|
fixturenet-eth-lighthouse-2:
|
|
hostname: fixturenet-eth-lighthouse-2
|
|
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: "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:
|
|
fixturenet-eth-bootnode-lighthouse:
|
|
condition: service_started
|
|
fixturenet-eth-geth-2:
|
|
condition: service_healthy
|
|
|
|
volumes:
|
|
fixturenet-geth-accounts:
|