You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copyright (C) 2009-2019 The Bitcoin Core developers
59
+
$ docker run getumbrel/bitcoind:v27.1 -version
60
+
Bitcoin Core RPC client version v27.1.0
61
+
Copyright (C) 2009-2024 The Bitcoin Core developers
62
62
63
63
Please contribute if you find Bitcoin Core useful. Visit
64
-
<https://bitcoincore.org> for further information about the software.
64
+
<https://bitcoincore.org/> for further information about the software.
65
65
The source code is available from <https://github.com/bitcoin/bitcoin>.
66
66
67
67
This is experimental software.
68
68
Distributed under the MIT software license, see the accompanying file COPYING
69
69
or <https://opensource.org/licenses/MIT>
70
-
71
-
This product includes software developed by the OpenSSL Project for use in the
72
-
OpenSSL Toolkit <https://www.openssl.org> and cryptographic software written by
73
-
Eric Young and UPnP software written by Thomas Bernard.
74
70
```
75
71
76
-
### Version
72
+
### Versions
77
73
78
-
Run a specific version of bitcoind if you want.
74
+
Images for versions starting from v27.1 are available. To run a specific available version, use the appropriate tag.
79
75
80
76
```
81
-
docker run --name bitcoind -v $HOME/.bitcoin:/data/.bitcoin -p 8333:8333 lukechilds/bitcoind:v0.18.1
77
+
docker run --name bitcoind -v $HOME/.bitcoin:/data/.bitcoin -p 8333:8333 getumbrel/bitcoind:v27.1
82
78
```
83
79
84
80
## Build
85
81
86
-
Build this image yourself by checking out this repo, `cd` ing into it and running:
82
+
A 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`).
87
83
88
-
```
89
-
docker build -t lukechilds/bitcoind .
90
-
```
91
-
92
-
You can build a specific version by passing in the `VERSION` build arg:
84
+
If you want to build this image yourself, check out this repo, `cd` into it, and run:
Replace `<version>` with the Bitcoin Core version you're building (without the 'v' prefix), and `<image_name>:<tag>` with your desired image name and tag.
103
91
104
-
For 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).
92
+
The Dockerfile supports `linux/amd64` and `linux/arm64` architectures only.
0 commit comments