This repository contains a Dockerfile to build a Docker Image for CPUminer Multi in CentOS 7
Install Docker.
You can download automated build from public Docker Hub Registry:
docker pull zokeber/cpuminer-multi:latest
Another way: build from Github
To create the image zokeber/cpuminer-multi, clone this repository and execute the following command on the docker-cpuminer-multi folder:
docker build -t zokeber/cpuminer-multi:latest .
Another alternatively, you can build an image directly from Github:
docker build -t="zokeber/cpuminer-multi:latest" github.com/zokeber/docker-cpuminer-multi
Create container:
docker create -it --name cpuminer zokeber/cpuminer-multi -a <algorithm> -o stratum+tcp://<url>:<port> -u <username> -p <password>
Start container:
docker start cpuminer
Another way to start a cpuminer-multi container:
docker run -d --name cpuminer zokeber/cpuminer-multi -a <algorithm> -o stratum+tcp://<url>:<port> -u <username> -p <password>
Show cpuminer settings:
docker exec -it cpuminer-multi cpuminer --help
Bash:
docker exec -it cpuminer-multi bash
Update the docker image:
docker pull zokeber/postgresql:latest
Content type
Image
Digest
Size
315.3 MB
Last updated
over 9 years ago
docker pull zokeber/cpuminer-multi