forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
geth.yml
92 lines (89 loc) · 2.43 KB
/
geth.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
x-logging: &logging
logging:
driver: json-file
options:
max-size: 100m
max-file: "3"
tag: '{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}'
services:
execution:
restart: "unless-stopped"
build:
context: ./geth
dockerfile: ${GETH_DOCKERFILE}
args:
- BUILD_TARGET=${GETH_SRC_BUILD_TARGET:-'$(git describe --tags $(git rev-list --tags --max-count=1))'}
- SRC_REPO=${GETH_SRC_REPO:-https://github.com/ethereum/go-ethereum}
- DOCKER_TAG=${GETH_DOCKER_TAG:-stable}
- DOCKER_REPO=${GETH_DOCKER_REPO:-ethereum/client-go}
stop_grace_period: 5m
image: geth:local
pull_policy: never
user: geth
environment:
- JWT_SECRET=${JWT_SECRET:-}
- LOG_LEVEL=${LOG_LEVEL:-info}
- EL_EXTRAS=${EL_EXTRAS:-}
- ARCHIVE_NODE=${ARCHIVE_NODE:-}
- NETWORK=${NETWORK}
- IPV6=${IPV6:-false}
- ANCIENT_DIR=${ANCIENT_DIR:-}
volumes:
- geth-eth1-data:/var/lib/goethereum
- geth-el-data:/var/lib/geth
- ${ANCIENT_DIR:-.nada}:/var/lib/ancient
- /etc/localtime:/etc/localtime:ro
- jwtsecret:/var/lib/geth/ee-secret
ports:
- ${HOST_IP:-}:${EL_P2P_PORT:-30303}:${EL_P2P_PORT:-30303}/tcp
- ${HOST_IP:-}:${EL_P2P_PORT:-30303}:${EL_P2P_PORT:-30303}/udp
networks:
default:
aliases:
- eth1
- ${NETWORK}-execution # This allows multiple Eth Docker stacks all connected to the same central traefik
<<: *logging
entrypoint:
- docker-entrypoint.sh
- geth
- --http
- --http.addr
- 0.0.0.0
- --http.vhosts=*
- --http.corsdomain=*
- --port
- ${EL_P2P_PORT:-30303}
- --http.port
- ${EL_RPC_PORT:-8545}
- --ws
- --ws.addr
- 0.0.0.0
- --ws.port
- ${EL_WS_PORT:-8546}
- --ws.origins=*
- --metrics
- --pprof
- --pprof.addr
- 0.0.0.0
- --authrpc.jwtsecret
- /var/lib/geth/ee-secret/jwtsecret
- --authrpc.addr
- 0.0.0.0
- --authrpc.port
- ${EE_PORT:-8551}
- --authrpc.vhosts=*
- --maxpeers
- ${EL_MAX_PEER_COUNT:-50}
labels:
- metrics.scrape=true
- metrics.path=/debug/metrics/prometheus
- metrics.port=6060
- metrics.instance=execution
- metrics.network=${NETWORK}
volumes:
geth-el-data:
geth-eth1-data:
jwtsecret:
networks:
default:
enable_ipv6: ${IPV6:-false}