{"id":32348630,"url":"https://github.com/eudaldgr/docker-bitcoind-core","last_synced_at":"2026-05-17T02:35:05.095Z","repository":{"id":318742682,"uuid":"1076007515","full_name":"eudaldgr/docker-bitcoind-core","owner":"eudaldgr","description":"scratchless bitcoind core image","archived":false,"fork":false,"pushed_at":"2025-10-14T21:21:09.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-14T23:13:46.287Z","etag":null,"topics":["bitcoin","bitcoind","container","docker","podman"],"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/eudaldgr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-14T09:26:04.000Z","updated_at":"2025-10-14T21:21:01.000Z","dependencies_parsed_at":"2025-10-14T23:49:58.041Z","dependency_job_id":"cbc7f51a-b6b5-48bd-b517-86e42ab221c9","html_url":"https://github.com/eudaldgr/docker-bitcoind-core","commit_stats":null,"previous_names":["eudaldgr/docker-bitcoind-core"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/eudaldgr/docker-bitcoind-core","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eudaldgr%2Fdocker-bitcoind-core","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eudaldgr%2Fdocker-bitcoind-core/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eudaldgr%2Fdocker-bitcoind-core/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eudaldgr%2Fdocker-bitcoind-core/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eudaldgr","download_url":"https://codeload.github.com/eudaldgr/docker-bitcoind-core/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eudaldgr%2Fdocker-bitcoind-core/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280761850,"owners_count":26386245,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-24T02:00:06.418Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","bitcoind","container","docker","podman"],"created_at":"2025-10-24T07:56:35.937Z","updated_at":"2026-05-17T02:35:05.075Z","avatar_url":"https://github.com/eudaldgr.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# docker-bitcoind-core\n\n\u003e ⚠️ **This repository has been archived.** For the latest container images, please visit \u003chttps://github.com/vegops/containers\u003e.\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 eudaldgr/docker-bitcoind-core:\u003cversion-tag\u003e\n```\n\nReplace the tag `\u003cversion-tag\u003e` with the available version that you want to run. For example, to run version 30.0, use the tag `v30.0`:\n\n```\ndocker run --name bitcoind -v $HOME/.bitcoin:/data/.bitcoin -p 8333:8333 eudaldgr/docker-bitcoind-core:v30.0\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  eudaldgr/docker-bitcoind-core:v30.0\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  eudaldgr/docker-bitcoind-core:v30.0 -rpcuser=user -rpcpassword=changeme\n```\n\nOr just use the container like a bitcoind binary:\n\n```\n$ docker run -v $HOME/.bitcoin:/data/.bitcoin eudaldgr/docker-bitcoind-core:v30.0 -version\nBitcoin Core daemon version v30.0.0\nCopyright (C) 2009-2025 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/license/MIT\u003e\n```\n\n### Versions\n\nImages for versions starting from v30.0 are available. To run a specific available version, use the appropriate tag.\n\n```\ndocker run --name bitcoind -v $HOME/.bitcoin:/data/.bitcoin -p 8333:8333 eudaldgr/docker-bitcoind-core:v30.0\n```\n\n## Build\n\nA multi-architecture (amd64 and arm64) image is automatically built and published to Docker Hub when new tags are pushed in the format `v*.*.*` (e.g., `v25.0.0`).\n\nIf you want to build this image yourself, check out this repo, `cd` into it, and run:\n\n```\ndocker buildx build --platform linux/amd64,linux/arm64 --build-arg VERSION=\u003cversion\u003e -t \u003cimage_name\u003e:\u003ctag\u003e --push .\n```\n\nReplace `\u003cversion\u003e` with the Bitcoin Core version you're building (without the 'v' prefix), and `\u003cimage_name\u003e:\u003ctag\u003e` with your desired image name and tag.\n\nThe Dockerfile supports `linux/amd64` and `linux/arm64` architectures only.\n\n## License\n\nMIT © eudaldgr https://eudald.gr\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feudaldgr%2Fdocker-bitcoind-core","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feudaldgr%2Fdocker-bitcoind-core","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feudaldgr%2Fdocker-bitcoind-core/lists"}