chia-docker icon indicating copy to clipboard operation
chia-docker copied to clipboard

Results 7 chia-docker issues
Sort by recently updated
recently updated
newest added

this makes the metadata part of the image

The Readme only talks about mounting `~/.chia/` or `~/.chia/mainnet/` when keeping a persistent config. However, the keys from `chia keys generate` are actually stored in `~/.chia_keys/` not ~/.chia/`. This means...

Linux security best practices say one should not run as root but instead use `sudo` if needed. This rule applies to applications in containers as well. Ideally, a container that...

#163 Add a Dockerfile target `no-root` that will run chia blockchain binary as user/group `chia:chia` and does not have `sudo` installed. Final target in the Dockerfile allows building a container...

stale-pr

Motivation: Adding isolated wallet container without touching main farming (farmer, fullnode, harvester, and wallet) container. Wallet can connect to farmer `fullnode` via docker network. Changes: Add `chia configure --set-fullnode-peer "${fullnode_address}:${fullnode_port}"`...