Skip to content

Commit 4bac4b4

Browse files
committed
Use only master tag
I didn't realise the docker didn't accept OCI-style, comma-seperated multi-tags. Therefore drop the "nightly" tag altogether and just use "master" to align with the upstream repo naming
1 parent b411f27 commit 4bac4b4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
echo "docker_platforms=${{ matrix.platform }}" | tee -a $GITHUB_OUTPUT
5151
echo "docker_username=bitcoin" | tee -a $GITHUB_OUTPUT
5252
echo "push=${PUSH}" | tee -a $GITHUB_OUTPUT
53-
echo "tags=${REPO}:nightly${{ matrix.variant.type }},${REPO}:master${{ matrix.variant.type }}" | tee -a $GITHUB_OUTPUT
53+
echo "tags=${REPO}:master${{ matrix.variant.type }}" | tee -a $GITHUB_OUTPUT
5454
5555
- name: Login into Docker Hub
5656
uses: docker/login-action@v3

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
| `bitcoin/bitcoin:alpine` | linux/amd64 |
1818
| `bitcoin/bitcoin:<version>` | linux/amd64, linux/arm64, linux/arm/v7 |
1919
| `bitcoin/bitcoin:<version>-alpine` | linux/amd64 |
20-
| `bitcoin/bitcoin:nightly` | linux/amd64, linux/arm64 |
21-
| `bitcoin/bitcoin:nightly-alpine` | linux/amd64, linux/arm64 |
20+
| `bitcoin/bitcoin:master` | linux/amd64, linux/arm64 |
21+
| `bitcoin/bitcoin:master-alpine` | linux/amd64, linux/arm64 |
2222

2323
- The Debian-based (non-alpine) images use pre-built binaries pulled from bitcoincore.org or bitcoin.org (or both) as availability dictates. These binaries are built using the Bitcoin Core [reproducible build](https://github.com/bitcoin/bitcoin/blob/master/contrib/guix/README.md) system, and signatures attesting to them can be found in the [guix.sigs](https://github.com/bitcoin-core/guix.sigs) repo. Signatures are checked in the build process for these docker images using the [verify_binaries.py](https://github.com/bitcoin/bitcoin/tree/master/contrib/verify-binaries) script from the bitcoin/bitcoin git repository.
2424
- The alpine images are built from source inside the CI.
@@ -58,8 +58,8 @@ These tags refer to a specific version of Bitcoin Core.
5858

5959
This tag refers to a nightly build of https://github.com/bitcoin/bitcoin master branch using Alpine Linux.
6060

61-
- `bitcoin/bitcoin:nightly`: Source-built binaries on Debian Linux, compiled nightly using master branch pulled from https://github.com/bitcoin/bitcoin.
62-
- `bitcoin/bitcoin:nightly-alpine`: Source-built binaries on Alpine Linux, compiled nightly using master branch pulled from https://github.com/bitcoin/bitcoin.
61+
- `bitcoin/bitcoin:master`: Source-built binaries on Debian Linux, compiled nightly using master branch pulled from https://github.com/bitcoin/bitcoin.
62+
- `bitcoin/bitcoin:master-alpine`: Source-built binaries on Alpine Linux, compiled nightly using master branch pulled from https://github.com/bitcoin/bitcoin.
6363

6464
## Usage
6565

0 commit comments

Comments
 (0)