-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathhoodi-testnet.docker-compose.yml
More file actions
38 lines (38 loc) · 1.08 KB
/
hoodi-testnet.docker-compose.yml
File metadata and controls
38 lines (38 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
services:
testnet-geth:
image: ghcr.io/fraxfinance/fraxtal-op-geth:v1.101701.0-frax-1.3.0
ports:
- 8545:8545
- 8546:8546
- 30303:30303/tcp
- 30303:30303/udp
entrypoint: ["geth-entrypoint"]
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8545"]
interval: 5s
timeout: 10s
retries: 100
env_file: .env.hoodi-testnet
volumes:
- ./hoodi-testnet/data/op-geth:/data
- ./hoodi-testnet/genesis.json:/data/genesis.json:ro
- ./geth-entrypoint.sh:/bin/geth-entrypoint
testnet-node:
image: ghcr.io/fraxfinance/fraxtal-op-node:v1.16.9-frax-1.2.1
ports:
- 7545:8545
- 9222:9222/tcp
- 9222:9222/udp
entrypoint: ["node-entrypoint"]
depends_on:
testnet-geth:
condition: service_healthy
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8545"]
interval: 5s
timeout: 10s
retries: 100
env_file: .env.hoodi-testnet
volumes:
- ./hoodi-testnet/rollup.json:/data/rollup.json:ro
- ./node-entrypoint.sh:/bin/node-entrypoint