Skip to content

Commit 54793cf

Browse files
committed
updated to v0.20.0 and removed i386 builds.
1 parent 3ad0d71 commit 54793cf

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- run: docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD}
3333
- run: |
3434
docker buildx build \
35-
--platform linux/amd64,linux/arm64,linux/386,linux/arm/v7 \
35+
--platform linux/amd64,linux/arm64,linux/arm/v7 \
3636
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
3737
--build-arg VCS_REF=$CIRCLE_SHA1 . -t ${DOCKER_TAG} --push
3838

Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG BITCOIND_VERSION=0.19.1
1+
ARG BITCOIND_VERSION=0.20.0
22

33
FROM debian:buster-slim AS builder
44

@@ -20,8 +20,6 @@ WORKDIR /bitcoin
2020
RUN set -eux; \
2121
arch="$(dpkg --print-architecture)"; \
2222
case "$arch" in \
23-
i386) \
24-
url=https://bitcoincore.org/bin/bitcoin-core-$BITCOIND_VERSION/bitcoin-$BITCOIND_VERSION-i686-pc-linux-gnu.tar.gz ;; \
2523
amd64) \
2624
url=https://bitcoin.org/bin/bitcoin-core-$BITCOIND_VERSION/bitcoin-$BITCOIND_VERSION-x86_64-linux-gnu.tar.gz ;; \
2725
armhf) \

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,16 @@ This documentation focus on running Docker container with _docker-compose.yml_ f
1313

1414
This bitcoind images supports following tags for e.g. Linux, Raspberry, Pine64 etc.:
1515

16-
- [`latest`](https://github.com/legacycode/bitcoind-docker/blob/latest/Dockerfile) [`v0.19.0.1`](https://github.com/legacycode/bitcoind-docker/blob/v0.19.0.1/Dockerfile) - stable bitcoind builds
16+
- [`latest`](https://github.com/legacycode/bitcoind-docker/blob/latest/Dockerfile)
17+
- [`v0.20.0`](https://github.com/legacycode/bitcoind-docker/blob/v0.20.0/Dockerfile)
18+
- [`v0.19.1`](https://github.com/legacycode/bitcoind-docker/blob/v0.19.1/Dockerfile)
19+
- [`v0.19.0.1`](https://github.com/legacycode/bitcoind-docker/blob/v0.19.0.1/Dockerfile)
1720

1821
This images supports following architectures [(more info)](8):
1922

2023
- `amd64` - for most desktop processors
2124
- `arm7v` - for 32-Bit ARM images like Raspbian (Raspberry 1, 2, 3 and 4)
2225
- `arm64` - for 64-Bit ARM images like armbian (Pine 64, etc.)
23-
- `386` - for legacy desktop processors
2426

2527
## Starting your bitcoind node
2628

0 commit comments

Comments
 (0)