File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1- ARG BITCOIND_VERSION=0.19.1
1+ ARG BITCOIND_VERSION=0.20.0
22
33FROM debian:buster-slim AS builder
44
@@ -20,8 +20,6 @@ WORKDIR /bitcoin
2020RUN 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) \
Original file line number Diff line number Diff line change @@ -13,14 +13,16 @@ This documentation focus on running Docker container with _docker-compose.yml_ f
1313
1414This 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
1821This 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
You can’t perform that action at this time.
0 commit comments