Skip to content

Commit ba1a920

Browse files
committed
Move the simulator-cl to its own compose file
simulator-cl needs to be started after the simulator itself is running, so it can't be in the same docker-compose with the dependencies.
1 parent 8c5c02a commit ba1a920

4 files changed

Lines changed: 18 additions & 16 deletions

File tree

docker-compose.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,3 @@ services:
8888
/usr/bin/mc anonymous set public minio/tips;
8989
exit 0;
9090
"
91-
simulator-cl:
92-
image: base-node-reth
93-
container_name: tips-simulator-cl
94-
ports:
95-
- "18545:8545" # RPC
96-
- "19222:9222" # P2P TCP
97-
- "19222:9222/udp" # P2P UDP
98-
- "17300:7300" # metrics
99-
- "16060:6060" # pprof
100-
command: ["bash", "./op-node-entrypoint"]
101-
volumes:
102-
- ~/.playground/devnet/:/artifacts
103-
- ~/.playground/devnet/rollup.json:/data/rollup.json
104-
env_file:
105-
- ${NETWORK_ENV:-./docker/.env.playground}
106-
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
services:
2+
simulator-cl:
3+
image: base-node-reth
4+
container_name: tips-simulator-cl
5+
ports:
6+
- "18545:8545" # RPC
7+
- "19222:9222" # P2P TCP
8+
- "19222:9222/udp" # P2P UDP
9+
- "17300:7300" # metrics
10+
- "16060:6060" # pprof
11+
command: ["bash", "./op-node-entrypoint"]
12+
volumes:
13+
- ~/.playground/devnet/:/artifacts
14+
- ~/.playground/devnet/rollup.json:/data/rollup.json
15+
env_file:
16+
- ${NETWORK_ENV:-.env.playground}
17+
18+

0 commit comments

Comments
 (0)