https://github.com/zokeber/docker-cpuminer-multi
CPUminer multi in CentOS 7
https://github.com/zokeber/docker-cpuminer-multi
Last synced: 4 months ago
JSON representation
CPUminer multi in CentOS 7
- Host: GitHub
- URL: https://github.com/zokeber/docker-cpuminer-multi
- Owner: zokeber
- License: mit
- Created: 2017-03-19T15:31:58.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-19T19:56:59.000Z (over 9 years ago)
- Last Synced: 2025-10-08T09:52:57.567Z (9 months ago)
- Size: 2.93 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# CPUminer multi in CentOS 7
This repository contains a Dockerfile to build a Docker Image for [CPUminer Multi](https://github.com/tpruvot/cpuminer-multi) in CentOS 7
[](https://travis-ci.org/zokeber/docker-cpuminer-multi)
## Base Docker Image
* [zokeber/centos](https://registry.hub.docker.com/u/zokeber/centos/)
## Usage
### Installation
1. Install [Docker](https://www.docker.com/).
2. 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 and running a container
**Create container:**
``` docker create -it --name cpuminer zokeber/cpuminer-multi -a -o stratum+tcp://: -u -p ```
**Start container:**
``` docker start cpuminer ```
**Another way to start a cpuminer-multi container:**
``` docker run -d --name cpuminer zokeber/cpuminer-multi -a -o stratum+tcp://: -u -p ```
**Show cpuminer settings:**
```docker exec -it cpuminer-multi cpuminer --help```
### Connection methods:
**Bash:**
`docker exec -it cpuminer-multi bash`
### Upgrading
Update the docker image:
``` docker pull zokeber/postgresql:latest ```