Skip to content

Commit 52a0dfe

Browse files
chore(release): publish nodebuilder 2.1.0 (#2445)
1 parent 6bddb69 commit 52a0dfe

17 files changed

Lines changed: 21 additions & 21 deletions

.github/workflows/push_release_images.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: docker/setup-buildx-action@v3
5454
- name: Set container image tags
5555
# Set the tags for the {container}-{version} and {container}
56-
# For example: ':alpine-v2.0.0' and ':alpine'
56+
# For example: ':alpine-v2.1.0' and ':alpine'
5757
run: |
5858
TAGS="${{ env.DOCKERHUB_REPO }}:${{ matrix.container }}-${{ env.NODEBUILDER_VERSION }}"
5959
TAGS="${TAGS},${{ env.DOCKERHUB_REPO }}:${{ matrix.container }}"
@@ -105,7 +105,7 @@ jobs:
105105
# Push if the CI run isn't from a beta prerelease
106106
push: ${{ !github.event.release.prerelease }}
107107
# Set the tags for the ubuntu-{version}, ubuntu, {version}, and latest
108-
# For example, ':ubuntu-v2.0.0', ':ubuntu', ':v2.0.0', and ':latest'
108+
# For example, ':ubuntu-v2.1.0', ':ubuntu', ':v2.1.0', and ':latest'
109109
tags: |
110110
${{ env.DOCKERHUB_REPO }}:${{ env.DEFAULT_IMAGE }}-${{ needs.build-and-push.outputs.nodebuilder-version }}
111111
${{ env.DOCKERHUB_REPO }}:${{ env.DEFAULT_IMAGE }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Run a secure Bitcoin Core node with ease.
55
Copy-paste the following command into Terminal:
66

77
```sh
8-
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v2.0.0/nodebuilder)"
8+
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v2.1.0/nodebuilder)"
99
```
1010

1111
[![Supports: Docker](https://img.shields.io/badge/supports-Docker-blue.svg?logo=docker)](https://docs.docker.com)
@@ -41,13 +41,13 @@ sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v2.0.0/node
4141
As mentioned above, start the script from the command line. Open Terminal and run:
4242

4343
```sh
44-
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v2.0.0/nodebuilder)"
44+
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v2.1.0/nodebuilder)"
4545
```
4646

4747
Or download the script to your local system, set permissions, and run it:
4848

4949
```sh
50-
wget https://github.com/bitcoin-tools/nodebuilder/raw/v2.0.0/nodebuilder
50+
wget https://github.com/bitcoin-tools/nodebuilder/raw/v2.1.0/nodebuilder
5151
chmod u+x nodebuilder
5252
./nodebuilder
5353
```

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM ubuntu:latest@sha256:353675e2a41babd526e2b837d7ec780c2a05bca0164f7ea5dbbd43
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v2.0.0
10+
ARG NODEBUILDER_VERSION=v2.1.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM alpine:latest@sha256:4bcff63911fcb4448bd4fdacec207030997caf25e9bea4045fa6c8
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v2.0.0
10+
ARG NODEBUILDER_VERSION=v2.1.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_amazonlinux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM amazonlinux:latest@sha256:b0737d724480361f137d428136721fff45f56792d650f4675
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v2.0.0
10+
ARG NODEBUILDER_VERSION=v2.1.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_archlinux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM archlinux:latest@sha256:2eb1a56a6036b1f70e63ca714814fe304a8f20d29ab425b4f05
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v2.0.0
10+
ARG NODEBUILDER_VERSION=v2.1.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM debian:stable-slim@sha256:0c80836db6d5bd1f89ed3c1300bbd888fc8a415130a52fd86
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v2.0.0
10+
ARG NODEBUILDER_VERSION=v2.1.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM fedora:latest@sha256:cf907e6a54b0ffd3275e03745b4914e748e69c352810918493ca91
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v2.0.0
10+
ARG NODEBUILDER_VERSION=v2.1.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_gentoo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM gentoo/stage3:latest@sha256:bdb137fa88fbb08a19c23fbca1fccfc9fe7ee0727976deb
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v2.0.0
10+
ARG NODEBUILDER_VERSION=v2.1.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_kali

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM kalilinux/kali-last-release@sha256:99ce6c34374cf5a3ead73dd63b0ced9629f7e31a
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v2.0.0
10+
ARG NODEBUILDER_VERSION=v2.1.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

0 commit comments

Comments
 (0)