-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (46 loc) · 1.11 KB
/
docker-compose.yml
File metadata and controls
49 lines (46 loc) · 1.11 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
# Clutch Protocol - Node development stack
# Nodes only. For full stack (API, demo app, Grafana, Prometheus, Seq) use clutch-deploy.
services:
node1:
image: ghcr.io/clutchprotocol/clutch-node:latest
container_name: clutch-node-container-node1
networks:
- clutch-network
ports:
- "8081:8081"
- "4001:4001"
- "3001:3001"
volumes:
- ./config:/app/config:ro
command: ["--env", "node1"]
node2:
image: ghcr.io/clutchprotocol/clutch-node:latest
container_name: clutch-node-container-node2
depends_on:
- node1
networks:
- clutch-network
ports:
- "8082:8082"
- "4002:4002"
- "3002:3002"
volumes:
- ./config:/app/config:ro
command: ["--env", "node2"]
node3:
image: ghcr.io/clutchprotocol/clutch-node:latest
container_name: clutch-node-container-node3
depends_on:
- node1
networks:
- clutch-network
ports:
- "8083:8083"
- "4003:4003"
- "3003:3003"
volumes:
- ./config:/app/config:ro
command: ["--env", "node3"]
networks:
clutch-network:
driver: bridge