CPU Mining Example

Try these commands to get the hang of it!

docker run -it cryptoandcoffee/cpu-jayddee -a x17 --benchmark

Press CTRL-C to stop mining at any time

docker run -itd --name x17_benchmark --rm cryptoandcoffee/cpu-jayddee -a x17 --benchmark

Here is a breakdown of the extra Docker arguments we used above. These are recommended for 24/7 operation.

Argument

Description

-i

Interactive

-t

TTY Interface

-d

Background the container

--name

Name of the container

--rm

Remove the container automatically on restart

Last updated