-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
54 lines (53 loc) · 1.91 KB
/
docker-compose.yaml
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
version: "3"
services:
# celestia:
# image: ghcr.io/smuu/rollkit-local-celestia-devnet:3a3ac8f
# restart: unless-stopped
# expose:
# - "26657"
# - "26659"
# # Rollup can't start until after DA starts.
# # This ensures it waits 5 seconds so the rollup can query it.
# healthcheck:
# test: ["CMD", "curl", "-f", "http://localhost:26657/block?height=1"]
# interval: 5s
# timeout: 10s
# retries: 5
# volumes:
# - ./data/devnet/app:/home/celestia/.celestia-app/
# - ./data/devnet/bridge:/bridge
light-node-x:
image: ghcr.io/celestiaorg/celestia-node:v0.11.0-rc2
restart: unless-stopped
expose:
- "26659"
environment:
- NODE_TYPE=light
- P2P_NETWORK=arabica-8
command: celestia light start --core.ip consensus-full-arabica-8.celestia-arabica.com --gateway --gateway.addr 0.0.0.0 --gateway.port 26659 --p2p.network arabica-8
volumes:
- ./data/light-node-x:/home/celestia/.celestia-light-arabica-8/
light-node-y:
image: ghcr.io/celestiaorg/celestia-node:v0.11.0-rc2
restart: unless-stopped
expose:
- "26659"
environment:
- NODE_TYPE=light
- P2P_NETWORK=arabica-8
command: celestia light start --core.ip consensus-full-arabica-8.celestia-arabica.com --gateway --gateway.addr 0.0.0.0 --gateway.port 26659 --p2p.network arabica-8
volumes:
- ./data/light-node-y:/home/celestia/.celestia-light-arabica-8/
light-node-z:
image: ghcr.io/celestiaorg/celestia-node:v0.11.0-rc2
restart: unless-stopped
expose:
- "26659"
ports:
- "26658:26658"
environment:
- NODE_TYPE=light
- P2P_NETWORK=arabica-8
command: celestia light start --core.ip consensus-full-arabica-8.celestia-arabica.com --gateway --gateway.addr 0.0.0.0 --gateway.port 26659 --p2p.network arabica-8
volumes:
- ./data/light-node-z:/home/celestia/.celestia-light-arabica-8/