-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
55 lines (54 loc) · 1.35 KB
/
docker-compose.yaml
File metadata and controls
55 lines (54 loc) · 1.35 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
services:
op-geth:
image: us-west1-docker.pkg.dev/devopsre/celo-blockchain-public/op-geth:celo-v2.2.2
restart: unless-stopped
stop_grace_period: 5m
env_file: ./op-geth.env
volumes:
# - ./chains/celo-sepolia:/chainconfig
- ./chains/mainnet:/chainconfig
- ./data:/geth
- ./shared:/shared
ports:
- "127.0.0.1:8545:8545"
- "127.0.0.1:8546:8546"
- "127.0.0.1:8551:8551"
- "127.0.0.1:9090:9090"
- "30303:30303"
- "30303:30303/udp"
networks:
- cel2
op-node:
image: us-west1-docker.pkg.dev/devopsre/celo-blockchain-public/op-node:celo-v2.2.1
restart: unless-stopped
stop_grace_period: 5m
env_file: ./op-node.env
volumes:
# - ./chains/celo-sepolia:/chainconfig
- ./chains/mainnet:/chainconfig
- ./shared:/shared
ports:
- "127.0.0.1:9545:9545"
- "127.0.0.1:9091:9091"
- "9222:9222"
- "9222:9222/udp"
networks:
- cel2
depends_on:
op-geth:
condition: service_started
eigenda-proxy:
image: ghcr.io/layr-labs/eigenda-proxy:v2.6.0
restart: unless-stopped
stop_grace_period: 5m
env_file: ./eigenda-proxy.env
volumes:
- ./eigenda-data:/data
ports:
- "127.0.0.1:4242:4242"
- "127.0.0.1:9092:9092"
networks:
- cel2
networks:
cel2:
external: true