We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fd0d1a commit 6004d20Copy full SHA for 6004d20
docker-compose.yml
@@ -16,6 +16,10 @@ services:
16
container_name: platform-validator
17
restart: unless-stopped
18
19
+ dns:
20
+ - 1.1.1.1
21
+ - 8.8.8.8
22
+
23
labels:
24
- "com.centurylinklabs.watchtower.enable=true"
25
@@ -25,6 +29,7 @@ services:
29
26
30
volumes:
27
31
- validator-data:/data
32
+ - ./target/release/validator-node:/usr/local/bin/validator-node:ro
28
33
34
environment:
35
- RUST_LOG=${RUST_LOG:-info,validator_node=debug}
@@ -36,6 +41,7 @@ services:
36
41
- P2P_PORT=${P2P_PORT:-8090}
37
42
- WITH_BOOTNODE=${WITH_BOOTNODE:-true}
38
43
- BOOTNODE_PORT=${P2P_PORT:-8090}
44
+ - CHUTES_API_KEY=${CHUTES_API_KEY:-}
39
45
40
46
healthcheck:
47
test: ["CMD-SHELL", "curl -sf http://localhost:8080/health || exit 1"]
0 commit comments