forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
teku-consensus.yml
69 lines (68 loc) · 1.91 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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: ./teku
args:
- BUILD_TARGET=${TEKU_SRC_BUILD_TARGET}
- DOCKER_TAG=${TEKU_DOCKER_TAG}
dockerfile: ${TEKU_DOCKERFILE}
image: teku:local
user: teku
stop_grace_period: 1m
volumes:
- tekuconsensus-data:/var/lib/teku
- /etc/localtime:/etc/localtime:ro
environment:
- JAVA_OPTS=-XX:SoftMaxHeapSize=2g -Xmx4g
expose:
- 8008/tcp
ports:
- ${CC_P2P_PORT:-9000}:${CC_P2P_PORT:-9000}/tcp
- ${CC_P2P_PORT:-9000}:${CC_P2P_PORT:-9000}/udp
networks:
default:
aliases:
- eth2
<<: *logging
entrypoint:
- /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=${CC_P2P_PORT:-9000}
- --p2p-peer-upper-bound=${TEKU_PEER_COUNT}
- --logging=${LOG_LEVEL}
- --rest-api-host-allowlist=*
- --rest-api-enabled=true
- --rest-api-interface=0.0.0.0
- --rest-api-port=5052
- --metrics-enabled=true
- --metrics-port=8008
- --metrics-interface=0.0.0.0
- --metrics-host-allowlist=*
- --p2p-subscribe-all-subnets-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.routers.cc.tls.certresolver=letsencrypt
- traefik.http.services.cc.loadbalancer.server.port=5052
eth:
image: tianon/true
restart: "no"
depends_on:
- consensus
volumes:
tekuconsensus-data: