Skip to content

Commit 7e851e8

Browse files
committed
add keys=persistent behavior
1 parent dd36299 commit 7e851e8

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

entrypoint.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ cd /chia-blockchain
99

1010
chia init
1111

12-
if [[ ${keys} == "generate" ]]; then
12+
if [[ ${keys} == "persistent" ]]; then
13+
echo "Not touching key directories"
14+
elif [[ ${keys} == "generate" ]]; then
1315
echo "to use your own keys pass them as a text file -v /path/to/keyfile:/path/in/container and -e keys=\"/path/in/container\""
1416
chia keys generate
1517
elif [[ ${keys} == "copy" ]]; then

readme.md

+5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ alternatively you can pass in your local keychain, if you have previously deploy
2626
```
2727
-v ~/.local/share/python_keyring/:/root/.local/share/python_keyring/
2828
```
29+
or if you would like to persist the entire mainnet subdirectory and not touch the key directories at all
30+
```
31+
-v ~/.chia/mainnet:/root/.chia/mainnet -e keys="persistent"
32+
```
33+
2934

3035
To start a farmer only node pass
3136
```

0 commit comments

Comments
 (0)