From d338b83925ed5bf0d1529d7e52c9c390eb23c862 Mon Sep 17 00:00:00 2001 From: b0xxer Date: Fri, 9 Feb 2024 06:52:20 -0600 Subject: [PATCH] Modified run script to use specified volume directory .bitcoin --- podman/bitcoin/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/podman/bitcoin/run.sh b/podman/bitcoin/run.sh index 5023b0e..0bca251 100644 --- a/podman/bitcoin/run.sh +++ b/podman/bitcoin/run.sh @@ -4,6 +4,6 @@ # podman pod create --name bitcoin-pod -p 8333:8333 -p 127.0.0.1:8332:8332 -podman volume create --name=bitcoind-data -podman run -v bitcoind-data:/bitcoin/.bitcoin --pod bitcoin-pod --name=bitcoind-node -d \ - git.b0xxy.net/b0xxer/bitcoin:26 +#podman volume create --name=bitcoind-data +mkdir ~/.bitcoin +podman run -v ~/.bitcoin:/bitcoin/.bitcoin:Z --pod bitcoin-pod --name=bitcoind-node -d git.b0xxy.net/b0xxer/bitcoin:26