10 lines
314 B
Bash
10 lines
314 B
Bash
#! /bin/sh
|
|
#
|
|
# Distributed under terms of the MIT license.
|
|
#
|
|
|
|
podman pod create --name bitcoin-pod -p 8333:8333 -p 127.0.0.1:8332:8332
|
|
#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
|