forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lodestar-cl-only.yml
81 lines (80 loc) · 2.33 KB
/
lodestar-cl-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
version: "3.9"
x-logging: &logging
logging:
driver: json-file
options:
max-size: 100m
max-file: "3"
tag: '{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}'
services:
consensus:
restart: "unless-stopped"
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
- jwtsecret:/var/lib/lodestar/consensus/ee-secret
environment:
- RAPID_SYNC_URL=${RAPID_SYNC_URL}
- JWT_SECRET=${JWT_SECRET}
- OVERRIDE_TTD=${OVERRIDE_TTD}
- MEV_BOOST=${MEV_BOOST}
- MEV_NODE=${MEV_NODE}
ports:
- ${HOST_IP:-0.0.0.0}:${CL_P2P_PORT:-9000}:${CL_P2P_PORT:-9000}/tcp
- ${HOST_IP:-0.0.0.0}:${CL_P2P_PORT:-9000}:${CL_P2P_PORT:-9000}/udp
<<: *logging
entrypoint:
- docker-entrypoint.sh
- node
- --max-old-space-size=4096
- /usr/app/node_modules/.bin/lodestar
- beacon
- --dataDir
- /var/lib/lodestar/consensus
- --rest.address
- 0.0.0.0
- --rest.port
- ${CL_REST_PORT:-5052}
- --port
- ${CL_P2P_PORT:-9000}
- --metrics
- true
- --metrics.port
- "8008"
- --metrics.address
- 0.0.0.0
- --execution.urls
- ${EL_NODE}
- --jwt-secret
- /var/lib/lodestar/consensus/ee-secret/jwtsecret
- --targetPeers
- ${CL_MIN_PEER_COUNT:-50}
- --logLevel
- ${LOG_LEVEL}
- --network
- ${NETWORK}
- --suggestedFeeRecipient
- ${FEE_RECIPIENT}
labels:
- traefik.enable=true
- traefik.http.routers.cl.service=cl
- traefik.http.routers.cl.entrypoints=websecure
- traefik.http.routers.cl.rule=Host(`${CL_HOST}.${DOMAIN}`)
- traefik.http.routers.cl.tls.certresolver=letsencrypt
- traefik.http.routers.cllb.service=cl
- traefik.http.routers.cllb.entrypoints=websecure
- traefik.http.routers.cllb.rule=Host(`${CL_LB}.${DOMAIN}`)
- traefik.http.routers.cllb.tls.certresolver=letsencrypt
- traefik.http.services.cl.loadbalancer.server.port=${CL_REST_PORT:-5052}
volumes:
lsconsensus-data:
jwtsecret: