Skip to content

Latest commit

 

History

History
15 lines (8 loc) · 406 Bytes

File metadata and controls

15 lines (8 loc) · 406 Bytes

Debugging

Viewing btcd Logs

docker logs btcd-node

Running Bash in Docker Container

Note: This container will be run in the same way as the btcd node, but will not connect to already running containers or processes.

docker run -v btcd-data:/btcd --rm -it lnzap/btcd bash -l

You can also attach bash into running container to debug running btcd

docker exec -it btcd-node bash -l