mirror of
https://github.com/tornadocash/rpc-nodes
synced 2024-02-02 14:53:56 +01:00
22 lines
378 B
Markdown
22 lines
378 B
Markdown
|
# Nethermind node
|
||
|
|
||
|
## Requirements for Xdai network
|
||
|
* memory: 16Gb
|
||
|
* disk: 200Gb SSD
|
||
|
|
||
|
## Installation
|
||
|
Set the domain name to be used in the `.env` file. You can also set a list of allowed IP addresses there. Rename `example.env` to `.env`:
|
||
|
```
|
||
|
mv example.env .env
|
||
|
```
|
||
|
|
||
|
Start node:
|
||
|
```bash
|
||
|
docker-compose up -d
|
||
|
```
|
||
|
|
||
|
## Upgrade
|
||
|
```bash
|
||
|
docker-compose pull
|
||
|
docker-compose up -d
|
||
|
```
|