mirror of
https://github.com/tornadocash/rpc-nodes
synced 2024-02-02 14:53:56 +01:00
bac930fe51
added geth and nethermind nodes
23 lines
558 B
Markdown
23 lines
558 B
Markdown
# rpc-nodes
|
|
|
|
## 1. Start proxy (traefik)
|
|
Create a shared network for running containers:
|
|
```bash
|
|
docker network create rpc-shared-network
|
|
```
|
|
|
|
Specify the domain name to be used and the email address for issuing the Let's Encrypt certificate in the `example.env` file. Rename `example.env` to `.env`:
|
|
```
|
|
mv example.env .env
|
|
```
|
|
|
|
Start proxy:
|
|
```bash
|
|
docker-compose up -d
|
|
```
|
|
|
|
## 2. Start blockchain node
|
|
* Ethereum - [geth.md](/geth/geth.md)
|
|
* Polygon - [bor.md](/bor/bor.md)
|
|
* BSC - [bsc.md](/bsc/bsc.md)
|
|
* Xdai - [nethermind.md](/nethermind/nethermind.md) |