# Copy to /etc/init/docker-bitcoind.conf description "Docker container for bitcoind p2p node" start on filesystem and started docker stop on runlevel [!2345] respawn pre-start script # Clean-up if left behind docker rm -f bitcoind-node || true # Attempt to always update and fail silently if the network isn't ready docker pull kylemanna/bitcoind || true end script script exec docker run --rm -v bitcoind-data:/bitcoin --name=bitcoind-node --rm -p 8333:8333 -p 127.0.0.1:8332:8332 kylemanna/bitcoind end script