Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
data/
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,22 @@ docker-compose -f docker-compose.poasokol-rpc.yml up -d
```

</details>


<details>
<summary>POA Sokol Archive node</summary>

## POA Sokol Archive node

### Requirements
* CPU: 2
* Memory: 8
* Disk: 600G

```
git clone https://github.com/openpoa/node-setup.git

docker-compose -f docker-compose.poasokol-archive up -d
```

</details>
32 changes: 32 additions & 0 deletions docker-compose.poasokol-archive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
version: '3.7'
services:
nethermind:
init: true
container_name: poa-sokol-archive
image: nethermind/nethermind:latest
environment:
NETHERMIND_CONFIG: sokol_archive
NETHERMIND_SYNCCONFIG_FASTSYNC: "false"
NETHERMIND_SYNCCONFIG_FASTBLOCKS: "false"
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"