Minimal bitcoind image based on (temporarily) debian:11 (Alpine has currently no wallet support)
1.2K
Minimal bitcoind docker image based on Alpine.
Most of the code is taken from https://github.com/kylemanna/docker-bitcoind,
and re-adapted for modern Alpine.
docker volume create --name=bitcoind-data
OR
mkdir -p /data/bitcoind
docker run -v bitcoind-data:/bitcoin --name=bitcoind-node -d \
-p 8333:8333 \
-p 127.0.0.1:8332:8332 \
fsvm88/bitcoind-docker
$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
218063fcc2ce fsvm88/bitcoind-docker "docker-entrypoint.s…" 4 minutes ago Up 4 minutes 127.0.0.1:8332->8332/tcp, 0.0.0.0:8333->8333/tcp bitcoind-node
docker logs -f bitcoind-node
Content type
Image
Digest
sha256:199b7ff2e…
Size
94 MB
Last updated
over 3 years ago
docker pull fsvm88/bitcoind-docker