btcd
btcsuite/btcd: An alternative full node bitcoin implementation written in Go (golang)
services:
btcd:
container_name: btcd
hostname: btcd
image: btcd
restart: unless-stopped
volumes:
- ./data:/root/.btcd
ports:
- 8333:8333
- 8334:8334
command: [
"--rpcuser=[USER]",
"--rpcpass=[PASS]"
]