Sign inSign up

doublebyte/xmr-stak

By doublebyte

Updated over 8 years ago

XMR-Stak - Monero/Aeon All-in-One Mining Software

Image
0

913

doublebyte/xmr-stak repository overview

Dockerized XMR-Stak - Monero/Aeon All-in-One Mining

What is XMR-Stak ?

XMR-Stak is a universal Stratum pool miner. This miner supports CPUs, AMD and NVIDIA gpus and can be used to mine the crypto currency Monero and Aeon.

This is an automated build of xmr-stak, the unified All-in-one Monero (and other currencies) miner. On this fork, we expose port 1600, in order to access the web interface with HTML reports.

How to use this image

Start xmr-stak

docker run -itd --name xmr-stak doublebyte1/xmr-stak

Set config file

You can generate a config file, the first time you run the application and then change it to suit your needs. To copy the file:

docker cp xmr-stak:/mnt/config.txt .

Then change the settings appropriately, stop and remove the container and run it again with the new config:

docker stop xmr-stak && docker rm xmr-stak
docker run -itd --name xmr-stak -v "$PWD"/config.txt:/mnt/config.txt doublebyte1/xmr-stak

If you want to access the web interface, you must set "httpd_port" : 1600.

Publish port

If you set the httpd port to 1600 on config.txt, as explained in the previous section, you can publish this port when running the container:

docker run -itd --name xmr-stak -v "$PWD"/config.txt:/mnt/config.txt -p1600:1600 doublebyte1/xmr-stak

This will give you access to a web page with reports on http://[DOCKER_IP]]:1600; please replace DOCKER_IP for the appropriate value in your OS (localhost, in linux systems).

Large Pages Support

To support large pages, you must enable it first at OS level. In linux:

sudo sysctl -w vm.nr_hugepages=10

Then you can run the container in privileged mode:

docker run -itd --name xmr-stak --privileged -v "$PWD"/config.txt:/mnt/config.txt -p1600:1600 doublebyte1/xmr-stak

Tag summary

Content type

Image

Digest

Size

163.6 MB

Last updated

over 8 years ago

docker pull doublebyte/xmr-stak