10 lines
304 B
Bash
10 lines
304 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
|
|
podman run -v bitcoind-data:/bitcoin/.bitcoin --pod bitcoin-pod --name=bitcoind-node -d \
|
|
git.b0xxy.net/b0xxer/bitcoin:26
|