mirror of
https://git.wownero.com/lza_menace/docker-wownero.git
synced 2024-08-15 01:03:31 +00:00
17 lines
455 B
Markdown
17 lines
455 B
Markdown
|
# Miner
|
||
|
|
||
|
This is a quick and dirty implementation. There's some hardcoded choices in there until I go back and update it or someone makes a PR.
|
||
|
|
||
|
```
|
||
|
# build container image of xmrig (mining software)
|
||
|
docker build -t miner .
|
||
|
|
||
|
# run simple wow miner
|
||
|
docker run --rm -d --name miner miner <your wow address>
|
||
|
|
||
|
# run big monero miner
|
||
|
docker run --rm -d --name miner miner <your xmr address> xmr 8
|
||
|
```
|
||
|
|
||
|
See [start_mining](./start_mining) for details of inputs.
|