forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
teku-consensus.yml
48 lines (48 loc) · 1.36 KB
/
teku-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
version: "3.4"
services:
consensus:
restart: "${RESTART}"
build:
context: ./teku
args:
- BUILD_TARGET=${TEKU_SRC_BUILD_TARGET}
- DOCKER_TAG=${TEKU_DOCKER_TAG}
dockerfile: ${TEKU_DOCKERFILE}
image: teku:local
user: root
stop_grace_period: 1m
volumes:
- tekuconsensus-data:/var/lib/teku
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
environment:
- JAVA_OPTS=-XX:SoftMaxHeapSize=2g -Xmx4g
ports:
- ${TEKU_PORT}:${TEKU_PORT}/tcp
- ${TEKU_PORT}:${TEKU_PORT}/udp
entrypoint:
- docker-entrypoint.sh
- /opt/teku/bin/teku
- --data-path=/var/lib/teku
- --log-destination=CONSOLE
- --network=${NETWORK}
- --eth1-endpoints=${EC_NODE}
- --eth1-deposit-contract-max-request-size=150
- --p2p-port=${TEKU_PORT}
- --p2p-peer-upper-bound=${TEKU_PEER_COUNT}
- --logging=${LOG_LEVEL}
- --rest-api-host-allowlist=*
- --rest-api-enabled=true
command: ${TEKU_RAPID_SYNC}
labels:
- traefik.enable=true
- traefik.http.routers.cc.entrypoints=websecure
- traefik.http.routers.cc.rule=Host(`${CC_HOST}.${DOMAIN}`)
- traefik.http.services.cc.loadbalancer.server.port=5051
eth:
image: tianon/true
restart: "no"
depends_on:
- consensus
volumes:
tekuconsensus-data: