forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
teku-base.yml
108 lines (107 loc) · 3.07 KB
/
teku-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
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:
- teku-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:
- 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=${CC_P2P_PORT:-9000}
- --p2p-peer-upper-bound=${TEKU_PEER_COUNT}
- --validators-keystore-locking-enabled=true
- --validator-keys=/var/lib/teku/validator-keys:/var/lib/teku/validator-passwords
- --validators-graffiti=${GRAFFITI}
- --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=*
- --validator-api-enabled=true
- --validator-api-port=${KEY_API_PORT:-7500}
- --validator-api-host-allowlist=*
- --validator-api-cors-origins=*
- --validator-api-keystore-file=/var/lib/teku/teku-keyapi.keystore
- --validator-api-keystore-password-file=/var/lib/teku/teku-keyapi.password
command: ${TEKU_RAPID_SYNC}
get-keyapi-token:
restart: "no"
image: alpine:latest
user: "10002"
volumes:
- teku-data:/var/lib/teku
- /etc/localtime:/etc/localtime:ro
<<: *logging
entrypoint: ["/bin/sh","-c"]
command:
- |
cat var/lib/teku/validator/key-manager/validator-api-bearer
echo
validator-import:
restart: "no"
image: teku:local
user: root
volumes:
- teku-data:/var/lib/teku
- ${DEPCLI_LOCALDIR}/validator_keys:/validator_keys
- /etc/localtime:/etc/localtime:ro
environment:
- KEYSTORE_PASSWORD=${KEYSTORE_PASSWORD:-''}
entrypoint: validator-import.sh
validator-exit:
restart: "no"
image: teku:local
user: teku
volumes:
- teku-data:/var/lib/teku
- /etc/localtime:/etc/localtime:ro
entrypoint:
- /opt/teku/bin/teku
- voluntary-exit
- --beacon-node-api-endpoint=http://consensus:5052
- --validator-keys=/var/lib/teku/validator-keys:/var/lib/teku/validator-passwords
eth:
image: tianon/true
restart: "no"
depends_on:
- consensus
volumes:
teku-data: