forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nimbus-allin1.yml
156 lines (149 loc) · 4.32 KB
/
nimbus-allin1.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# Nimbus consensus also handles validator keys: All In One
x-logging: &logging
logging:
driver: json-file
options:
max-size: 100m
max-file: "3"
tag: '{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}'
x-build: &nimbus-build
context: ./nimbus
dockerfile: ${NIM_DOCKERFILE}
args:
- BUILD_TARGET=${NIM_SRC_BUILD_TARGET:-'$(git describe --tags $(git rev-list --tags --max-count=1))'}
- SRC_REPO=${NIM_SRC_REPO:-https://github.com/status-im/nimbus-eth2}
- DOCKER_TAG=${NIM_DOCKER_TAG:-multiarch-latest}
- DOCKER_VC_TAG=${NIM_DOCKER_VC_TAG:-multiarch-latest}
- DOCKER_REPO=${NIM_DOCKER_REPO:-statusim/nimbus-eth2}
- DOCKER_VC_REPO=${NIM_DOCKER_VC_REPO:-statusim/nimbus-validator-client}
services:
consensus:
restart: "unless-stopped"
build:
target: consensus
<<: *nimbus-build
image: nimbus:local
pull_policy: never
user: user
stop_grace_period: 1m
volumes:
- nimbus-data:/var/lib/nimbus
- /etc/localtime:/etc/localtime:ro
- jwtsecret:/var/lib/nimbus/ee-secret
environment:
- RAPID_SYNC_URL=${RAPID_SYNC_URL}
- NETWORK=${NETWORK}
- JWT_SECRET=${JWT_SECRET}
- MEV_BOOST=${MEV_BOOST}
- MEV_NODE=${MEV_NODE}
- DOPPELGANGER=${DOPPELGANGER}
- LOG_LEVEL=${LOG_LEVEL}
- CL_EXTRAS=${CL_EXTRAS:-}
- VC_EXTRAS=${VC_EXTRAS:-}
- ARCHIVE_NODE=${ARCHIVE_NODE:-}
- GRAFFITI=${GRAFFITI:-}
- DEFAULT_GRAFFITI=${DEFAULT_GRAFFITI:-false}
- WEB3SIGNER=${WEB3SIGNER:-false}
- EMBEDDED_VC=true
- ENABLE_DIST_ATTESTATION_AGGR=${ENABLE_DIST_ATTESTATION_AGGR:-false}
ports:
- ${HOST_IP:-}:${CL_P2P_PORT:-9000}:${CL_P2P_PORT:-9000}/tcp
- ${HOST_IP:-}:${CL_P2P_PORT:-9000}:${CL_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=${CL_P2P_PORT:-9000}
- --udp-port=${CL_P2P_PORT:-9000}
- --max-peers=${CL_MAX_PEER_COUNT:-160}
- --el=${EL_NODE}
- --jwt-secret=/var/lib/nimbus/ee-secret/jwtsecret
- --rest
- --rest-address=0.0.0.0
- --rest-port=${CL_REST_PORT:-5052}
- --enr-auto-update=true
- --metrics
- --metrics-port=8008
- --metrics-address=0.0.0.0
- --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
- --suggested-fee-recipient=${FEE_RECIPIENT}
labels:
- metrics.scrape=true
- metrics.path=/metrics
- metrics.port=8008
- metrics.instance=consensus
- metrics.network=${NETWORK}
wipe-db:
profiles: ["tools"]
restart: "no"
image: alpine:3
user: "10002"
volumes:
- nimbus-data:/var/lib/nimbus
- /etc/localtime:/etc/localtime:ro
entrypoint: ["/bin/sh","-c"]
command:
- |
rm -rf /var/lib/nimbus/db/*
rm /var/lib/nimbus/setupdone
validator-exit:
profiles: ["tools"]
restart: "no"
build:
target: consensus
<<: *nimbus-build
image: nimbus:local
pull_policy: never
user: root
volumes:
- /etc/localtime:/etc/localtime:ro
- ./.eth/validator_keys:/validator_keys
entrypoint:
- validator-exit.sh
- /usr/local/bin/nimbus_beacon_node
- --log-level=${LOG_LEVEL}
- deposits
- exit
- --rest-url=http://consensus:5052
- --validator=
validator-keys:
profiles: ["tools"]
restart: "no"
build:
context: ./vc-utils
image: vc-utils:local
pull_policy: never
user: root
volumes:
- nimbus-data:/var/lib/nimbus
- ./.eth/validator_keys:/validator_keys
- ./.eth/exit_messages:/exit_messages
- /etc/localtime:/etc/localtime:ro
environment:
- KEYSTORE_PASSWORD=${KEYSTORE_PASSWORD:-}
- KEY_API_PORT=${KEY_API_PORT:-7500}
- WEB3SIGNER=${WEB3SIGNER:-false}
- CL_NODE=${CL_NODE}
depends_on:
- consensus
entrypoint:
- keymanager.sh
- /var/lib/nimbus/api-token.txt
- consensus
volumes:
nimbus-data:
jwtsecret:
networks:
default:
enable_ipv6: ${IPV6:-false}