Setting up a docker image which mines verium
Works on OSX, Windows, Linux.
- Download and install Docker
- For MacOS install Homebrew
- Clone this repo
git clone [email protected]:Roykk/veriumMinerDocker.git
- Enter folder
\git\veriumMinerDocker
- Build the docker image with
docker build . -t miner
- Before we can run the docker image we have to setup a worker at Bloxstor
- Select
Getting Started
from the menu to the left - Select
Verium
as coin and pressNext
- Fill in the
Coin Info
:- Your Verium Address: Your Verium wallet adresse or use
VTPYitLGPyLhrmNUb4fC1DZ3o3bjfjQgYV
- Your Worker Name:
sonat-worker-<dittnavn>
- Your Worker Pass:
1234qwer
- Your Verium Address: Your Verium wallet adresse or use
- Press
Next
- Select OS
- Select
Verium Miner
- Select
EU LONDON
as server or the closest located to you - Select one of the ports to mine on
- Press
Finish
and a command is created - Use this command when running docker
- Run the docker image with
docker run -d --name myMiner miner -n 1048576 -o [poolURL] -u [username] -p password
.
Here is an example:
docker run -d --name myMiner miner -n 1048576 -o stratum+tcp://pool-eu.bloxstor.com:3002 -u VTPYitLGPyLhrmNUb4fC1DZ3o3bjfjQgYV.sonat-worker-01 -p 1234qwer
- To see what is going on you can use
docker logs myMiner
My container keeps crashing, what do i do? On OSX the default memory limit is max 2GiB. Its needs to be increased. Click the whale in top menubar-->preference--> increase memory to 5GiB, and CPU to as many as you want to use.