forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lodestar-vc-only.yml
127 lines (122 loc) · 3.19 KB
/
lodestar-vc-only.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
version: "3.9"
x-logging: &logging
logging:
driver: json-file
options:
max-size: 100m
max-file: "3"
tag: '{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}'
x-build: &ls-build
context: ./lodestar
dockerfile: ${LS_DOCKERFILE}
args:
- BUILD_TARGET=${LS_SRC_BUILD_TARGET:-'$(git describe --tags $(git rev-list --tags --max-count=1))'}
- SRC_REPO=${LS_SRC_REPO:-https://github.com/ChainSafe/lodestar}
- DOCKER_TAG=${LS_DOCKER_TAG:-latest}
- DOCKER_REPO=${LS_DOCKER_REPO:-chainsafe/lodestar}
services:
validator:
restart: "unless-stopped"
build:
<<: *ls-build
image: lodestar:local
user: lsvalidator
environment:
- MEV_BOOST=${MEV_BOOST}
- BEACON_STATS_API=${BEACON_STATS_API}
- BEACON_STATS_MACHINE=${BEACON_STATS_MACHINE}
- DOPPELGANGER=${DOPPELGANGER}
- VC_EXTRAS=${VC_EXTRAS:-}
- GRAFFITI=${GRAFFITI:-}
- DEFAULT_GRAFFITI=${DEFAULT_GRAFFITI:-false}
- WEB3SIGNER=${WEB3SIGNER}
- NETWORK=${NETWORK}
volumes:
- lsvalidator-data:/var/lib/lodestar/validators
- /etc/localtime:/etc/localtime:ro
networks:
default:
aliases:
- vc
<<: *logging
entrypoint:
- docker-entrypoint-vc.sh
- node
- --max-old-space-size=2048
- /usr/app/node_modules/.bin/lodestar
- validator
- --dataDir
- /var/lib/lodestar/validators
- --beaconNodes
- ${CL_NODE:-http://consensus:5052}
- --keymanager
- --keymanager.address
- 0.0.0.0
- --keymanager.port
- ${KEY_API_PORT:-7500}
- --metrics
- "true"
- --metrics.port
- "8009"
- --metrics.address
- 0.0.0.0
- --logLevel
- ${LOG_LEVEL}
- --suggestedFeeRecipient
- ${FEE_RECIPIENT}
- --force
labels:
- metrics.scrape=true
- metrics.path=/metrics
- metrics.port=8009
- metrics.instance=validator
validator-exit:
profiles: ["tools"]
restart: "no"
build:
<<: *ls-build
image: lodestar:local
user: lsvalidator
volumes:
- lsvalidator-data:/var/lib/lodestar/validators
- /etc/localtime:/etc/localtime:ro
entrypoint:
- node
- --max-old-space-size=2048
- /usr/app/node_modules/.bin/lodestar
- validator
- voluntary-exit
- --dataDir
- /var/lib/lodestar/validators
- --server
- ${CL_NODE:-http://consensus:5052}
- --logLevel
- ${LOG_LEVEL}
- --network
- ${NETWORK}
- --force
validator-keys:
profiles: ["tools"]
restart: "no"
build:
context: ./vc-utils
image: vc-utils:local
user: root
volumes:
- lsvalidator-data:/var/lib/lodestar/validators
- ./.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:
- validator
entrypoint:
- keymanager.sh
- /var/lib/lodestar/validators/validator-db/api-token.txt
- vc
volumes:
lsvalidator-data: