forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlh-consensus.yml
79 lines (78 loc) · 1.87 KB
/
lh-consensus.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
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: ./lighthouse
dockerfile: ${LH_DOCKERFILE}
args:
- BUILD_TARGET=${LH_SRC_BUILD_TARGET}
- DOCKER_TAG=${LH_DOCKER_TAG}
image: lighthouse:local
user: lhconsensus
stop_grace_period: 1m
volumes:
- lhconsensus-data:/var/lib/lighthouse
- /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
- 5054/tcp
networks:
default:
aliases:
- eth2
<<: *logging
entrypoint:
- lighthouse
- bn
- --disable-upnp
- --datadir
- /var/lib/lighthouse
- --http
- --http-address
- 0.0.0.0
- --http-port
- "5052"
- --network
- ${NETWORK}
- --port
- ${CC_P2P_PORT:-9000}
- --target-peers
- ${LH_PEER_COUNT}
- --eth1-endpoints
- ${EC_NODE}
- --eth1-blocks-per-log-query
- "150"
- --debug-level=${LOG_LEVEL}
- --metrics
- --metrics-address
- 0.0.0.0
- --metrics-port
- "8008"
- --validator-monitor-auto
- --subscribe-all-subnets
- --import-all-attestations
command: ${LH_RAPID_SYNC}
labels:
- traefik.enable=true
- traefik.http.routers.cc.entrypoints=websecure
- traefik.http.routers.cc.rule=Host(`${CC_HOST}.${DOMAIN}`)
- traefik.http.routers.cc.tls.certresolver=letsencrypt
- traefik.http.services.cc.loadbalancer.server.port=5052
eth:
image: tianon/true
restart: "no"
depends_on:
- consensus
volumes:
lhconsensus-data: