rundqvist/unmineable

By rundqvist

Updated almost 5 years ago

A user friendly crypto currency miner. Optional dev fee.

Image
5

100K+

rundqvist/unmineable repository overview

CPU crypto currency miner

A user friendly crypto currency miner based on Alpine Linux and XMRig.

Docker pulls image size commit activity last commit

Features

  • Easy to configure
  • Supports a wide range of currencies
  • Only 0,75% pool fee with referral code: 1bz8-v3i2 (default 1%)
  • Optional dev fee

Components

Run

Quick test
docker run -d --name miner rundqvist/unmineable
Configure miner for your coin and wallet

Replace the values in the sample code with your desired settings.
Examples uses 50% of cpu to mine Shiba Inu to the specified wallet.

Docker run
docker run \
  -d \
  --name=unmineable \
  -e 'CPU_LIMIT_PERCENT=50' \
  -e 'COIN=SHIB' \
  -e 'WALLET=...' \
  -e 'WORKER=docker' \
  -e 'DIFFICULTY=35000' \
  -e 'DONATE=1' \
  rundqvist/unmineable
Docker compose
version: "3"
services:
  unmineable:
    image: rundqvist/unmineable
    container_name: unmineable
    
    restart: unless-stopped
    
    network_mode: bridge
    
    environment:
      - CPU_LIMIT_PERCENT=50
      - COIN=SHIB
      - WALLET=...
      - WORKER=docker
      - DIFFICULTY=35000
      - DONATE=1
    
    volumes:
      - /etc/localtime:/etc/localtime:ro
Configuration
Variables
VariableUsage
CPU_LIMIT_PERCENTPercentage of cpu to use for mining (digits only, 1-100). Default 50%.
COINCurrency supported by unMineable.
Example:
- BTC
- ETH
- DOGE
- XMR
- ...and many more (please see here for a complete list).
WALLETYour wallet address for specified coin.
WORKERName of your worker (default: docker).
DIFFICULTYDesired difficulty.
DONATEPercentage of cpu time to use for dev donation (digits only, 0-99). Default 1%.

Tips

Problem allocating memory or lower hashrate than expected? Try running container in privileged mode.

Issues

Please report issues at https://github.com/rundqvist/docker-unmineable/issues

Donations

Please support the development by making a small donation.

Support Support Support

Tag summary

Content type

Image

Digest

Size

304.9 MB

Last updated

almost 5 years ago

docker pull rundqvist/unmineable