Skip to content

Commit

Permalink
updated to v0.20.0 and removed i386 builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
legacycode committed Jul 28, 2020
1 parent 3ad0d71 commit 54793cf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- run: docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD}
- run: |
docker buildx build \
--platform linux/amd64,linux/arm64,linux/386,linux/arm/v7 \
--platform linux/amd64,linux/arm64,linux/arm/v7 \
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
--build-arg VCS_REF=$CIRCLE_SHA1 . -t ${DOCKER_TAG} --push
Expand Down
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BITCOIND_VERSION=0.19.1
ARG BITCOIND_VERSION=0.20.0

FROM debian:buster-slim AS builder

Expand All @@ -20,8 +20,6 @@ WORKDIR /bitcoin
RUN set -eux; \
arch="$(dpkg --print-architecture)"; \
case "$arch" in \
i386) \
url=https://bitcoincore.org/bin/bitcoin-core-$BITCOIND_VERSION/bitcoin-$BITCOIND_VERSION-i686-pc-linux-gnu.tar.gz ;; \
amd64) \
url=https://bitcoin.org/bin/bitcoin-core-$BITCOIND_VERSION/bitcoin-$BITCOIND_VERSION-x86_64-linux-gnu.tar.gz ;; \
armhf) \
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@ This documentation focus on running Docker container with _docker-compose.yml_ f

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

- [`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
- [`latest`](https://github.com/legacycode/bitcoind-docker/blob/latest/Dockerfile)
- [`v0.20.0`](https://github.com/legacycode/bitcoind-docker/blob/v0.20.0/Dockerfile)
- [`v0.19.1`](https://github.com/legacycode/bitcoind-docker/blob/v0.19.1/Dockerfile)
- [`v0.19.0.1`](https://github.com/legacycode/bitcoind-docker/blob/v0.19.0.1/Dockerfile)

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

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

## Starting your bitcoind node

Expand Down

0 comments on commit 54793cf

Please sign in to comment.