-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
85 lines (85 loc) · 2.13 KB
/
docker-compose.yml
File metadata and controls
85 lines (85 loc) · 2.13 KB
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
version: "3.9"
services:
execution:
tty: true
environment:
- TERM=xterm-256color
- COLORTERM=truecolor
stop_grace_period: 30s
container_name: sedge-execution-client
restart: unless-stopped
image: ${EC_IMAGE_VERSION}
networks:
- sedge
volumes:
- ${EC_DATA_DIR}:/nethermind/data
- ${EC_JWT_SECRET_PATH}:/tmp/jwt/jwtsecret
ports:
- 30303:30303/tcp
- 30303:30303/udp
- 8008:8008
- 8545:8545
- 8551:8551
expose:
- 8545
- 8551
command:
- --config=${NETWORK}
- --datadir=/nethermind/data
- --log=${NETHERMIND_LOG_LEVEL}
- --JsonRpc.Enabled=true
- --JsonRpc.Host=0.0.0.0
- --JsonRpc.Port=8545
- --JsonRpc.JwtSecretFile=/tmp/jwt/jwtsecret
- --JsonRpc.EngineHost=0.0.0.0
- --JsonRpc.EnginePort=8551
- --Network.DiscoveryPort=30303
- --HealthChecks.Enabled=true
- --Metrics.Enabled=true
- --Metrics.ExposePort=8008
- --Sync.NonValidatorNode=true
- --Sync.DownloadBodiesInFastSync=false
- --Sync.DownloadReceiptsInFastSync=false
- --JsonRpc.EnabledModules=[Eth,TxPool,Web3,Net,Health,Rpc,Debug]
consensus:
stop_grace_period: 30s
container_name: sedge-consensus-client
restart: unless-stopped
image: ${CC_IMAGE_VERSION}
networks:
- sedge
volumes:
- ${CC_DATA_DIR}:/var/lib/lighthouse
- ${CC_JWT_SECRET_PATH}:/tmp/jwt/jwtsecret
ports:
- 9000:9000/tcp
- 9000:9000/udp
- 5054:5054/tcp
- 4000:4000
expose:
- 4000
command:
- lighthouse
- bn
- --disable-upnp
- --datadir=/var/lib/lighthouse
- --port=9000
- --http
- --http-address=0.0.0.0
- --http-port=4000
- --network=${NETWORK}
- --target-peers=${CC_PEER_COUNT}
- --execution-endpoints=${EC_AUTH_URL}
- --execution-jwt=/tmp/jwt/jwtsecret
- --eth1=${EC_API_URL}
- --debug-level=${CC_LOG_LEVEL}
- --validator-monitor-auto
- --subscribe-all-subnets
- --import-all-attestations
- --metrics
- --metrics-port=5054
- --metrics-address=0.0.0.0
- --checkpoint-sync-url=http://139.144.26.89:4000/
networks:
sedge:
name: sedge-network