forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lodestar-base.yml
149 lines (148 loc) · 3.58 KB
/
lodestar-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
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: ./lodestar
dockerfile: ${LS_DOCKERFILE}
args:
- BUILD_TARGET=${LS_SRC_BUILD_TARGET}
- DOCKER_TAG=${LS_DOCKER_TAG}
image: lodestar:local
user: lsconsensus
stop_grace_period: 1m
volumes:
- lsconsensus-data:/var/lib/lodestar/consensus
- /etc/localtime:/etc/localtime:ro
ports:
- ${CC_P2P_PORT:-9000}:${CC_P2P_PORT:-9000}/tcp
- ${CC_P2P_PORT:-9000}:${CC_P2P_PORT:-9000}/udp
expose:
- 5052/tcp
<<: *logging
entrypoint:
- node
- --max-old-space-size=6144
- /usr/app/node_modules/.bin/lodestar
- beacon
- --rootDir
- /var/lib/lodestar/consensus
- --api.rest.enabled
- "true"
- --api.rest.host
- 0.0.0.0
- --api.rest.port
- "5052"
- --network.discv5.bindAddr
- "/ip4/0.0.0.0/udp/${CC_P2P_PORT:-9000}"
- --network.localMultiaddrs
- "/ip4/0.0.0.0/tcp/${CC_P2P_PORT:-9000}"
- --eth1.providerUrls
- ${EC_NODE}
- --logLevel
- ${LOG_LEVEL}
- --network
- ${NETWORK}
command: ${LS_RAPID_SYNC}
validator:
restart: "${RESTART}"
image: lodestar:local
user: lsvalidator
volumes:
- lsvalidator-data:/var/lib/lodestar/validators
- /etc/localtime:/etc/localtime:ro
<<: *logging
entrypoint:
- node
- --max-old-space-size=8192
- /usr/app/node_modules/.bin/lodestar
- validator
- --rootDir
- /var/lib/lodestar/validators
- --server
- http://consensus:5052
- --graffiti
- ${GRAFFITI}
- --logLevel
- ${LOG_LEVEL}
- --network
- ${NETWORK}
validator-import:
restart: "${RESTART}"
image: lodestar:local
user: root
volumes:
- lsvalidator-data:/var/lib/lodestar/validators
- ${DEPCLI_LOCALDIR}/validator_keys:/validator_keys
- /etc/localtime:/etc/localtime:ro
environment:
- KEYSTORE_PASSWORD=${KEYSTORE_PASSWORD:-''}
entrypoint:
- validator-import.sh
- node
- --max-old-space-size=8192
- /usr/app/node_modules/.bin/lodestar
- account
- validator
- import
- --rootDir
- /var/lib/lodestar/validators
- --directory
- /val_keys
- --network
- ${NETWORK}
validator-exit:
restart: "no"
image: lodestar:local
user: lsvalidator
volumes:
- lsvalidator-data:/var/lib/lodestar/validators
- /etc/localtime:/etc/localtime:ro
entrypoint:
- node
- --max-old-space-size=8192
- /usr/app/node_modules/.bin/lodestar
- account
- validator
- voluntary-exit
- --rootDir
- /var/lib/lodestar/validators
- --server
- http://consensus:5052
- --logLevel
- ${LOG_LEVEL}
- --network
- ${NETWORK}
validator-account:
restart: "no"
image: lodestar:local
user: lsvalidator
volumes:
- lsvalidator-data:/var/lib/lodestar/validators
- /etc/localtime:/etc/localtime:ro
entrypoint:
- node
- --max-old-space-size=8192
- /usr/app/node_modules/.bin/lodestar
- account
- validator
- --rootDir
- /var/lib/lodestar/validators
- --network
- ${NETWORK}
eth:
image: tianon/true
restart: "no"
depends_on:
- consensus
- validator
volumes:
lsconsensus-data:
lsvalidator-data: