{"id":15598937,"url":"https://github.com/lukechilds/docker-bitcoind","last_synced_at":"2026-03-11T09:08:58.630Z","repository":{"id":65923048,"uuid":"220388322","full_name":"lukechilds/docker-bitcoind","owner":"lukechilds","description":"Run a full Bitcoin node with one command","archived":false,"fork":false,"pushed_at":"2023-01-22T12:22:58.000Z","size":60,"stargazers_count":7,"open_issues_count":5,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-06T13:07:10.848Z","etag":null,"topics":["bitcoin","bitcoin-core","bitcoin-node","bitcoind","container","cryptocurrencies","cryptocurrency","docker"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lukechilds.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["lukechilds"],"custom":["https://blockstream.info/address/1LukeQU5jwebXbMLDVydeH4vFSobRV9rkj","https://blockstream.info/address/3Luke2qRn5iLj4NiFrvLBu2jaEj7JeMR6w","https://blockstream.info/address/bc1qlukeyq0c69v97uss68fet26kjkcsrymd2kv6d4","https://tippin.me/@lukechilds?refurl=github.com/lukechilds/docker-bitcoind"]}},"created_at":"2019-11-08T04:43:41.000Z","updated_at":"2023-09-08T17:59:57.000Z","dependencies_parsed_at":"2023-02-16T12:25:14.524Z","dependency_job_id":null,"html_url":"https://github.com/lukechilds/docker-bitcoind","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lukechilds/docker-bitcoind","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukechilds%2Fdocker-bitcoind","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukechilds%2Fdocker-bitcoind/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukechilds%2Fdocker-bitcoind/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukechilds%2Fdocker-bitcoind/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lukechilds","download_url":"https://codeload.github.com/lukechilds/docker-bitcoind/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukechilds%2Fdocker-bitcoind/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30376810,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-11T06:09:32.197Z","status":"ssl_error","status_checked_at":"2026-03-11T06:09:17.086Z","response_time":84,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bitcoin","bitcoin-core","bitcoin-node","bitcoind","container","cryptocurrencies","cryptocurrency","docker"],"created_at":"2024-10-03T01:42:09.417Z","updated_at":"2026-03-11T09:08:58.615Z","avatar_url":"https://github.com/lukechilds.png","language":"Dockerfile","readme":"# docker-bitcoind\n\n[![Docker Pulls](https://badgen.net/docker/pulls/lukechilds/bitcoind?icon=docker\u0026label=Docker%20pulls)](https://hub.docker.com/r/lukechilds/bitcoind/)\n[![Docker Image Size](https://badgen.net/docker/size/lukechilds/bitcoind/latest/amd64?icon=docker\u0026label=lukechilds/bitcoind)](https://hub.docker.com/r/lukechilds/bitcoind/tags?name=latest)\n[![GitHub Donate](https://badgen.net/badge/GitHub/Sponsor/D959A7?icon=github)](https://github.com/sponsors/lukechilds)\n[![Bitcoin Donate](https://badgen.net/badge/Bitcoin/Donate/F19537?icon=bitcoin)](https://lu.ke/tip/bitcoin)\n[![Lightning Donate](https://badgen.net/badge/Lightning/Donate/F6BC41?icon=bitcoin-lightning)](https://lu.ke/tip/lightning)\n\n\u003e Run a full Bitcoin node with one command\n\nA Docker configuration with sane defaults for running a full Bitcoin node.\n\n## Usage\n\n```\ndocker run --name bitcoind -v $HOME/.bitcoin:/data/.bitcoin -p 8333:8333 lukechilds/bitcoind\n```\n\n### JSON-RPC\n\nTo query `bitcoind`, execute `bitcoin-cli` from within the container:\n\n```\ndocker exec -it bitcoind bitcoin-cli getnetworkinfo\n```\n\nTo access JSON-RPC from other services you'll also need to expose port 8332. You probably only want this available to localhost:\n\n```\ndocker run --name bitcoind -v $HOME/.bitcoin:/data/.bitcoin \\\n  -p 8333:8333 \\\n  -p 127.0.0.1:8332:8332 \\\n  lukechilds/bitcoind\n```\n\nYou could now query JSON-RPC via cURL like so:\n\n```\ncurl --data '{\"jsonrpc\":\"1.0\",\"id\":\"curltext\",\"method\":\"getnetworkinfo\"}' \\\n  http://$(cat $HOME/.bitcoin/.cookie)@127.0.0.1:8332\n```\n\n### CLI Arguments\n\nAll CLI arguments are passed directly through to bitcoind.\n\nYou can use this to configure via CLI args without a config file:\n\n```\ndocker run --name bitcoind -v $HOME/.bitcoin:/data/.bitcoin \\\n  -p 8333:8333 \\\n  -p 127.0.0.1:8332:8332 \\\n  lukechilds/bitcoind -rpcuser=jonsnow -rpcpassword=ikn0wnothin\n```\n\nOr just use the container like a bitcoind binary:\n\n```\n$ docker run lukechilds/bitcoind -version\nBitcoin Core Daemon version v0.18.1\nCopyright (C) 2009-2019 The Bitcoin Core developers\n\nPlease contribute if you find Bitcoin Core useful. Visit\n\u003chttps://bitcoincore.org\u003e for further information about the software.\nThe source code is available from \u003chttps://github.com/bitcoin/bitcoin\u003e.\n\nThis is experimental software.\nDistributed under the MIT software license, see the accompanying file COPYING\nor \u003chttps://opensource.org/licenses/MIT\u003e\n\nThis product includes software developed by the OpenSSL Project for use in the\nOpenSSL Toolkit \u003chttps://www.openssl.org\u003e and cryptographic software written by\nEric Young and UPnP software written by Thomas Bernard.\n```\n\n### Version\n\nRun a specific version of bitcoind if you want.\n\n```\ndocker run --name bitcoind -v $HOME/.bitcoin:/data/.bitcoin -p 8333:8333 lukechilds/bitcoind:v0.18.1\n```\n\n## Build\n\nBuild this image yourself by checking out this repo, `cd` ing into it and running:\n\n```\ndocker build -t lukechilds/bitcoind .\n```\n\nYou can build a specific version by passing in the `VERSION` build arg:\n\n```\ndocker build --build-arg VERSION=0.18.1 -t lukechilds/bitcoind:v0.18.1 .\n```\n\nYou can build a specific architecture by passing in the `ARCH` build arg:\n\n```\ndocker build --build-arg ARCH=amd64 -t lukechilds/bitcoind:amd64 .\n```\n\nFor a full list of supported build arg options, check out the [build script matrix](https://github.com/lukechilds/docker-bitcoind/blob/master/.github/workflows/build.yml).\n\n## License\n\nMIT © Luke Childs\n","funding_links":["https://github.com/sponsors/lukechilds","https://blockstream.info/address/1LukeQU5jwebXbMLDVydeH4vFSobRV9rkj","https://blockstream.info/address/3Luke2qRn5iLj4NiFrvLBu2jaEj7JeMR6w","https://blockstream.info/address/bc1qlukeyq0c69v97uss68fet26kjkcsrymd2kv6d4","https://tippin.me/@lukechilds?refurl=github.com/lukechilds/docker-bitcoind"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukechilds%2Fdocker-bitcoind","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flukechilds%2Fdocker-bitcoind","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukechilds%2Fdocker-bitcoind/lists"}