Dockerfile for chia-blockchain app
docker pull axili39/chia-blockchain:1.1.7
docker run -d -v /path/to/chia/home:/home/chia/.chia -v /path/to/temporary/drive:/home/chia/tmp -v /path/to/final/drive:/home/chia/plots --name chia1 axili39/chia-blockchain:1.1.7
now container is running and chia has been initialized.
docker exec -it chia1 chiactl keys add
enters mnemonics key
docker exec -it chia1 chiactl keys show
docker exec -it chia1 chiactl plots create -k 32 -t /home/chia/tmp -d /home/chia/plots -n 1 -b 10000 -u 128
Starts plotting process, for plotting 1 plot (k32) with 10MiB of memory and 128 buckets using tmp drive and destination drive shared with host.
my way:
docker exec -it chia1 bash
cd /chia-blockchain
. ./activate
nohup chia plots create -k 32 -t /home/chia/tmp -d /home/chia/plots -n 1 -b 10000 -u 128 > plotting.txt &
next closing terminal and wait.