-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (50 loc) · 1.07 KB
/
docker-compose.yml
File metadata and controls
50 lines (50 loc) · 1.07 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
version: "3.4"
services:
node:
build: ./node
image: "node.trustlines.dnp.dappnode.eth:1.0.0"
environment:
- ROLE=observer
- ADDRESS=
- PASSWORD=
- CLIENT_ARGS=
restart: unless-stopped
ports:
- "30302"
- 30302/udp
volumes:
- "trustlines:/data/tlbc"
- "config:/config/custom"
- "enode:/config/network"
- "shared:/shared/"
bridge:
build: ./bridge
image: "bridge.trustlines.dnp.dappnode.eth:1.0.0"
restart: on-failure
volumes:
- "config:/config:ro"
monitor:
build: ./monitor
image: "monitor.trustlines.dnp.dappnode.eth:1.0.0"
volumes:
- "reports:/reports"
- "state:/state"
- "shared:/shared"
restart: on-failure
netstats:
build: ./netstat
image: "netstats.trustlines.dnp.dappnode.eth:1.0.0"
environment:
- NETSTATS_ENABLE=no
- WS_USER
- WS_PASSWORD
- INSTANCE_NAME
- SHOW_VALIDATOR_STATUS=no
restart: on-failure
volumes:
trustlines: {}
config: {}
enode: {}
state: {}
shared: {}
reports: {}