forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prysm-base.yml
217 lines (215 loc) · 5.37 KB
/
prysm-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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
version: "3.4"
x-logging: &logging
logging:
driver: json-file
options:
max-size: 10m
max-file: "3"
tag: '{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}'
x-build: &prysm-build
context: ./prysm
dockerfile: ${PRYSM_DOCKERFILE}
args:
- BUILD_TARGET=${PRYSM_SRC_BUILD_TARGET}
- DOCKER_TAG=${PRYSM_DOCKER_TAG}
services:
consensus:
restart: "${RESTART}"
build:
target: consensus
<<: *prysm-build
image: prysm-consensus:local
user: prysmconsensus
stop_grace_period: 1m
volumes:
- prysmbeacon-data:/var/lib/prysm
- /etc/localtime:/etc/localtime:ro
ports:
- ${PRYSM_PORT}:${PRYSM_PORT}/tcp
- ${PRYSM_UDP_PORT}:${PRYSM_UDP_PORT}/udp
expose:
- 5052/tcp
- 4000/tcp
- 8080/tcp
networks:
default:
aliases:
- eth2
<<: *logging
entrypoint:
- docker-entrypoint.sh
- beacon-chain
- --datadir
- /var/lib/prysm/
- --rpc-host
- 0.0.0.0
- --grpc-gateway-host
- 0.0.0.0
- --grpc-gateway-port
- "5052"
- --http-web3provider
- ${EC_NODE}
- --fallback-web3provider
- ${EC_FALLBACK_NODE1}
- --fallback-web3provider
- ${EC_FALLBACK_NODE2}
- --eth1-header-req-limit
- "150"
- --p2p-tcp-port
- ${PRYSM_PORT}
- --p2p-udp-port
- ${PRYSM_UDP_PORT}
- --p2p-max-peers
- ${PRYSM_PEER_COUNT}
- --verbosity
- ${LOG_LEVEL}
- --${NETWORK}
- --accept-terms-of-use
- --monitoring-host
- 0.0.0.0
- --monitoring-port
- "8008"
validator:
restart: "${RESTART}"
build:
target: validator
<<: *prysm-build
image: prysm-validator:local
user: prysmvalidator
expose:
- 8081/tcp
volumes:
- prysmvalidator-data:/var/lib/prysm
- /etc/localtime:/etc/localtime:ro
<<: *logging
entrypoint:
- validator
- --datadir
- /var/lib/prysm
- --wallet-dir
- /var/lib/prysm/
- --beacon-rpc-provider
- consensus:4000
- --graffiti
- ${GRAFFITI}
- --verbosity
- ${LOG_LEVEL}
- --${NETWORK}
- --accept-terms-of-use
# If you chose not to store the wallet password during import, comment out the two following lines
- --wallet-password-file
- /var/lib/prysm/password.txt
- --monitoring-host
- 0.0.0.0
- --monitoring-port
- "8009"
- --web
- --grpc-gateway-host
- 0.0.0.0
- --grpc-gateway-port
- ${KEY_API_PORT:-7500}
- --grpc-gateway-corsdomain=*
- --beacon-rpc-gateway-provider
- consensus:5052
depends_on:
- consensus
labels:
- traefik.enable=true
- traefik.http.routers.prysm.entrypoints=web,websecure
- traefik.http.routers.prysm.rule=Host(`${PRYSM_HOST}.${DOMAIN}`)
- traefik.http.routers.prysm.tls.certresolver=letsencrypt
- traefik.http.services.prysm.loadbalancer.server.port=${KEY_API_PORT:-7500}
create-wallet:
restart: "no"
image: prysm-validator:local
user: prysmvalidator
environment:
- NETWORK=${NETWORK}
volumes:
- prysmvalidator-data:/var/lib/prysm
- /etc/localtime:/etc/localtime:ro
entrypoint: create-wallet.sh
get-keyapi-token:
restart: "no"
image: alpine:latest
user: "10000"
volumes:
- prysmvalidator-data:/var/lib/prysm
- /etc/localtime:/etc/localtime:ro
<<: *logging
entrypoint: ["/bin/sh","-c"]
command:
- |
sed -n 2p /var/lib/prysm/auth-token
validator-list:
restart: "no"
user: prysmvalidator
image: prysm-validator:local
volumes:
- prysmvalidator-data:/var/lib/prysm
- /etc/localtime:/etc/localtime:ro
entrypoint:
- validator
- --datadir
- /var/lib/prysm
- --verbosity
- ${LOG_LEVEL}
- accounts
- list
- --wallet-dir=/var/lib/prysm/
- --${NETWORK}
# If you chose not to store the wallet password during import, comment out the following line
- --wallet-password-file=/var/lib/prysm/password.txt
validator-import:
restart: "no"
image: prysm-validator:local
user: root
volumes:
- prysmvalidator-data:/var/lib/prysm
- ${DEPCLI_LOCALDIR}/validator_keys:/validator_keys
- /etc/localtime:/etc/localtime:ro
environment:
- KEYSTORE_PASSWORD=${KEYSTORE_PASSWORD:-''}
- WALLET_PASSWORD=${WALLET_PASSWORD:-''}
entrypoint:
- validator-import.sh
- validator
- --verbosity
- ${LOG_LEVEL}
- --datadir
- /var/lib/prysm
- accounts
- import
- --wallet-dir=/var/lib/prysm/
- --keys-dir=/val_keys
- --${NETWORK}
validator-exit:
restart: "no"
user: prysmvalidator
image: prysm-validator:local
volumes:
- prysmvalidator-data:/var/lib/prysm
- /etc/localtime:/etc/localtime:ro
entrypoint:
- validator
- --verbosity
- ${LOG_LEVEL}
- --datadir
- /var/lib/prysm
- accounts
- voluntary-exit
- --wallet-dir=/var/lib/prysm/
- --beacon-rpc-provider=consensus:4000
- --wallet-password-file=/var/lib/prysm/password.txt
- --${NETWORK}
depends_on:
- consensus
eth:
image: tianon/true
restart: "no"
depends_on:
- consensus
- validator
volumes:
prysmbeacon-data:
prysmvalidator-data: