├── .github └── workflows │ ├── on-tag.yml │ ├── single-test.yml │ ├── test.yml │ └── update-readme.yml ├── .gitignore ├── 0.15 └── Dockerfile ├── 0.16 └── Dockerfile ├── 0.17 └── Dockerfile ├── 0.18 ├── Dockerfile └── skip-fs-test-of-utf8.patch ├── 0.19 └── Dockerfile ├── 0.20 └── Dockerfile ├── 0.21 └── Dockerfile ├── 22.0 └── Dockerfile ├── 23.0 └── Dockerfile ├── 24.0 └── Dockerfile ├── 25.0 └── Dockerfile ├── 25.1 └── Dockerfile ├── 26.0 └── Dockerfile ├── 26.1 └── Dockerfile ├── 27.0 └── Dockerfile ├── 27.1 └── Dockerfile ├── 27.2 └── Dockerfile ├── 28.0 └── Dockerfile ├── LICENSE ├── README.md └── scripts ├── list-tags.sh └── new-release.sh /.github/workflows/on-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/.github/workflows/on-tag.yml -------------------------------------------------------------------------------- /.github/workflows/single-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/.github/workflows/single-test.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/.github/workflows/update-readme.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | /.idea 4 | -------------------------------------------------------------------------------- /0.15/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/0.15/Dockerfile -------------------------------------------------------------------------------- /0.16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/0.16/Dockerfile -------------------------------------------------------------------------------- /0.17/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/0.17/Dockerfile -------------------------------------------------------------------------------- /0.18/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/0.18/Dockerfile -------------------------------------------------------------------------------- /0.18/skip-fs-test-of-utf8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/0.18/skip-fs-test-of-utf8.patch -------------------------------------------------------------------------------- /0.19/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/0.19/Dockerfile -------------------------------------------------------------------------------- /0.20/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/0.20/Dockerfile -------------------------------------------------------------------------------- /0.21/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/0.21/Dockerfile -------------------------------------------------------------------------------- /22.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/22.0/Dockerfile -------------------------------------------------------------------------------- /23.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/23.0/Dockerfile -------------------------------------------------------------------------------- /24.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/24.0/Dockerfile -------------------------------------------------------------------------------- /25.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/25.0/Dockerfile -------------------------------------------------------------------------------- /25.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/25.1/Dockerfile -------------------------------------------------------------------------------- /26.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/26.0/Dockerfile -------------------------------------------------------------------------------- /26.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/26.1/Dockerfile -------------------------------------------------------------------------------- /27.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/27.0/Dockerfile -------------------------------------------------------------------------------- /27.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/27.1/Dockerfile -------------------------------------------------------------------------------- /27.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/27.2/Dockerfile -------------------------------------------------------------------------------- /28.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/28.0/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/README.md -------------------------------------------------------------------------------- /scripts/list-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/scripts/list-tags.sh -------------------------------------------------------------------------------- /scripts/new-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lncm/docker-bitcoind/HEAD/scripts/new-release.sh --------------------------------------------------------------------------------