Skip to content

Commit

Permalink
Corrent container name in e2e tests
Browse files Browse the repository at this point in the history
The l1 runs geth, not op-geth.
  • Loading branch information
jcvernaleo committed Oct 25, 2024
1 parent 030d3f7 commit eb59618
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions e2e/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ services:
POPM_LOG_LEVEL: "INFO"
POPM_REMINE_THRESHOLD: "1"

op-geth-l1:
geth-l1:
image: "ethereum/client-go@sha256:343cff592e1a9daf99a89261d3263941ff9c3350b62b3ebc0f7c30d35721d905"
ports:
- "8545:8545"
Expand Down Expand Up @@ -190,12 +190,12 @@ services:
dockerfile: "optimism-stack.Dockerfile"
context: "."
depends_on:
- "op-geth-l1"
- "geth-l1"
healthcheck:
test: ["CMD-SHELL", "ls /l2configs/rollup.json"]
environment:
ADMIN_PRIVATE_KEY: "${ADMIN_PRIVATE_KEY}"
OP_GETH_L1_RPC: "http://op-geth-l1:8545"
OP_GETH_L1_RPC: "http://geth-l1:8545"
working_dir: "/tmp"
command:
- "sh"
Expand All @@ -220,7 +220,7 @@ services:
restart_policy:
condition: "any"
depends_on:
op-geth-l1:
geth-l1:
condition: "service_started"
op-geth-l2:
condition: "service_healthy"
Expand All @@ -238,7 +238,7 @@ services:
- "--rpc.port=8547"
- "--p2p.disable"
- "--rpc.enable-admin"
- "--l1=http://op-geth-l1:8545"
- "--l1=http://geth-l1:8545"
- "--l1.rpckind=standard"
- "--l1.trustrpc"
- "--log.level=info"
Expand Down Expand Up @@ -269,10 +269,10 @@ services:
- "--rpc.enable-admin"
- "--max-channel-duration=1"
- "--max-pending-tx=1"
- "--l1-eth-rpc=http://op-geth-l1:8545"
- "--l1-eth-rpc=http://geth-l1:8545"
- "--private-key=${ADMIN_PRIVATE_KEY}"
depends_on:
op-geth-l1:
geth-l1:
condition: "service_started"
op-geth-l2:
condition: "service_healthy"
Expand All @@ -287,7 +287,7 @@ services:
restart_policy:
condition: "any"
depends_on:
op-geth-l1:
geth-l1:
condition: "service_started"
op-geth-l2:
condition: "service_healthy"
Expand All @@ -300,7 +300,7 @@ services:
- "--rollup-rpc=http://op-node:8547"
- "--l2oo-address=${L2OO_ADDRESS}"
- "--private-key=${ADMIN_PRIVATE_KEY}"
- "--l1-eth-rpc=http://op-geth-l1:8545"
- "--l1-eth-rpc=http://geth-l1:8545"

volumes:
l2configs:
Expand Down

0 comments on commit eb59618

Please sign in to comment.