forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nimbus-base.yml
120 lines (119 loc) · 3.08 KB
/
nimbus-base.yml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
version: "3.4"
x-logging: &logging
logging:
driver: json-file
options:
max-size: 10m
max-file: "3"
tag: '{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}'
services:
consensus:
restart: "${RESTART}"
build:
context: ./nimbus
args:
- BUILD_TARGET=${NIM_SRC_BUILD_TARGET}
- DOCKER_TAG=${NIM_DOCKER_TAG}
dockerfile: ${NIM_DOCKERFILE}
image: nimbus:local
user: user
stop_grace_period: 1m
volumes:
- nimbus-data:/var/lib/nimbus
- /etc/localtime:/etc/localtime:ro
environment:
- NIMBUS_RAPID_SYNC=${NIMBUS_RAPID_SYNC:-}
- NETWORK=${NETWORK}
expose:
- 8008/tcp
- 5052/tcp
ports:
- ${CC_P2P_PORT:-9000}:${CC_P2P_PORT:-9000}/tcp
- ${CC_P2P_PORT:-9000}:${CC_P2P_PORT:-9000}/udp
networks:
default:
aliases:
- eth2
<<: *logging
entrypoint:
- docker-entrypoint.sh
- /usr/local/bin/nimbus_beacon_node
- --data-dir=/var/lib/nimbus
- --non-interactive
- --status-bar=false
- --tcp-port=${CC_P2P_PORT:-9000}
- --udp-port=${CC_P2P_PORT:-9000}
- --max-peers=${NIM_PEER_COUNT}
- --network=${NETWORK}
- --web3-url=${EC_NODE}
- --web3-url=${EC_FALLBACK_NODE1}
- --web3-url=${EC_FALLBACK_NODE2}
- --graffiti=${GRAFFITI}
- --log-level=${LOG_LEVEL}
- --rest
- --rest-address=0.0.0.0
- --rest-port=5052
- --enr-auto-update=true
- --doppelganger-detection=false
- --metrics
- --metrics-port=8008
- --metrics-address=0.0.0.0
- --validator-monitor-auto
- --keymanager
- --keymanager-port=${KEY_API_PORT:-7500}
- --keymanager-address=0.0.0.0
- --keymanager-allow-origin=*
- --keymanager-token-file=/var/lib/nimbus/api-token.txt
get-keyapi-token:
restart: "no"
image: alpine:latest
user: "10002"
volumes:
- nimbus-data:/var/lib/nimbus
- /etc/localtime:/etc/localtime:ro
<<: *logging
entrypoint: ["/bin/sh","-c"]
command:
- |
cat /var/lib/nimbus/api-token.txt
validator-import:
restart: "no"
image: nimbus:local
user: root
volumes:
- nimbus-data:/var/lib/nimbus
- ${DEPCLI_LOCALDIR}/validator_keys:/validator_keys
- /etc/localtime:/etc/localtime:ro
environment:
- KEYSTORE_PASSWORD=${KEYSTORE_PASSWORD:-}
entrypoint:
- validator-import.sh
- /usr/local/bin/nimbus_beacon_node
- --data-dir=/var/lib/nimbus
- --network=${NETWORK}
- deposits
- import
- /val_keys
validator-exit:
restart: "no"
image: nimbus:local
user: user
volumes:
- nimbus-data:/var/lib/nimbus
- /etc/localtime:/etc/localtime:ro
entrypoint:
- /usr/local/bin/nimbus_beacon_node
- --data-dir=/var/lib/nimbus
- --network=${NETWORK}
- --log-level=${LOG_LEVEL}
- deposits
- exit
- --rest-url=http://consensus:5052
- --validator=
eth:
image: tianon/true
restart: "no"
depends_on:
- consensus
volumes:
nimbus-data: