Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.04 KB

README.md

File metadata and controls

38 lines (32 loc) · 1.04 KB

docker-chia-blockchain

Dockerfile for chia-blockchain app

Usage for plotting:

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.

Import private keys:

docker exec -it chia1 chiactl keys add 

enters mnemonics key

docker exec -it chia1 chiactl keys show

Start plotting process:

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.