-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.poasokol-rpc.yml
More file actions
32 lines (32 loc) · 1.26 KB
/
docker-compose.poasokol-rpc.yml
File metadata and controls
32 lines (32 loc) · 1.26 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
version: '3.7'
services:
nethermind:
init: true
container_name: poa-sokol-rpc
image: nethermind/nethermind:latest
environment:
NETHERMIND_CONFIG: sokol
NETHERMIND_SYNCCONFIG_FASTSYNC: "true"
NETHERMIND_SYNCCONFIG_FASTBLOCKS: "true"
NETHERMIND_JSONRPCCONFIG_ENABLED: "true"
NETHERMIND_JSONRPCCONFIG_HOST: 0.0.0.0
NETHERMIND_SYNCCONFIG_DOWNLOADBODIESINFASTSYNC: "true"
NETHERMIND_SYNCCONFIG_DOWNLOADRECEIPTSINFASTSYNC: "true"
NETHERMIND_PRUNINGCONFIG_MODE: "None"
NETHERMIND_NETWORKCONFIG_BOOTNODES: "enode://10eb38a1b0384d478c98b763b5d608b79bdb1e9777391cb7fcec2d1c68f80ce2c958589e958d1d9319fd8a7713c3480444cab109091ad5cae273798dd50f9728@104.248.49.16:30303,enode://f11a0f80939b49a28bf99581da9b351a592ec1504b9d32a7dfda79b36510a891e96631239c4166e5c73368c21e9bb3241e7fd6929b899772e5a8fe9a7b7c3af6@45.77.52.149:30303"
volumes:
- ./data/logs:/nethermind/logs
- ./data/keystore:/nethermind/keystore
- ./data/nethermind_db:/nethermind/nethermind_db
ports:
- "30303:30303"
- "30303:30303/udp"
- "30313:30313"
- "30313:30313/udp"
- "8545:8545"
restart: unless-stopped
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "10"