57 lines
2.6 KiB
Markdown
57 lines
2.6 KiB
Markdown
# Salvium P2Pool Docker Compose
|
|
|
|
Run your own **Salvium Node + P2Pool + XMRig** in Docker
|
|
|
|
## Instructions
|
|
|
|
#### Install docker and docker-compose
|
|
[Install Docker](https://docs.docker.com/engine/install/)
|
|
[Install Docker Compose](https://docs.docker.com/compose/install/)
|
|
|
|
Note: The docker compose plugin uses the command "docker compose" while the pip installed command is "docker-compose".
|
|
|
|
#### Clone the P2Pool project
|
|
```
|
|
git clone --recursive https://github.com/mxhess/p2pool-salvium
|
|
```
|
|
|
|
#### Configure your Salvium address for mining rewards
|
|
```
|
|
cd p2pool-salvium/docker-compose
|
|
./configure
|
|
```
|
|
Make sure to set your own Salvium **Wallet Address** (starting with SC1).
|
|
|
|
#### Build the docker containers
|
|
```
|
|
docker compose build --no-cache
|
|
```
|
|
|
|
#### Run the node, pool, and CPU miner (or updated configuration)
|
|
```
|
|
docker compose up
|
|
```
|
|
|
|
#### Optional
|
|
* Open ports 19080 (Salvium p2p port) and 38889 (P2Pool p2p port) or 38888 (P2Pool-mini p2p port) in your firewall to ensure better connectivity. If you're mining from a computer behind NAT (like a router) you could consider forwarding the ports to your local machine
|
|
* An XMRig CPU miner is included by default, but you can connect additional miners to this same p2pool node using port 3333 (or alternate if configured) when you set it as "exposed" in the configuration
|
|
* Configure your kernel for maximum mining performance: [XMRig RandomX Optimization Guide](https://xmrig.com/docs/miner/randomx-optimization-guide)
|
|
* Many optional configurations and customizations are available by running './configure'
|
|
|
|
|
|
#### Other useful commands
|
|
* You can **run everything in the background** by adding the "-d" argument to the "docker compose up" command: ```docker compose up -d```
|
|
* You can **stop everything** with CTRL-C or ```docker compose down```
|
|
* You can **update** by building new images with the ```--no-cache``` option. Example: ```docker compose build --no-cache``` or just update Salvium with: ```docker compose build --no-cache salvium``` followed by ```docker compose up```
|
|
* You can see logs when running in the background with the "docker compose logs" command: ```docker compose logs -f```
|
|
* You can pause mining with: ```docker compose pause xmrig``` and resume mining with: ```docker compose unpause xmrig```
|
|
* You can disable mining with: ```docker compose stop xmrig``` and re-enable mining with: ```docker compose start xmrig```
|
|
|
|
|
|
#### Uninstall
|
|
Change to p2pool-salvium/docker-compose directory
|
|
Stop and remove all containers: ```docker compose down```
|
|
Remove the p2pool data: ```docker volume rm p2pool```
|
|
Remove the p2pool-mini data: ```docker volume rm p2pool-mini```
|
|
Remove the salvium data: ```docker volume rm salvium```
|