Skip to content

Commit 2ef8718

Browse files
committed
make: docker-pull: pull tagged images
1 parent f718081 commit 2ef8718

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

GNUmakefile

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -478,27 +478,28 @@ mytarget:
478478
)
479479
docker-pull:docker-start## docker-pull
480480

481+
@[[ '$(shell uname -s)' == 'Darwin' ]] && \
482+
[[ '$(shell uname -m)' == 'x86_64' ]] && \
483+
echo "is Darwin AND x86_64" || \
484+
echo "not Darwin AND x86_64";
485+
486+
@[[ '$(shell uname -s)' == 'Darwin' ]] && \
487+
[[ ! '$(shell uname -m)' == 'x86_64' ]] && \
488+
echo "is Darwin AND NOT x86_64" || \
489+
echo "is NOT (Darwin AND NOT x86_64)";
490+
491+
docker pull alpine
492+
docker pull rust:latest
481493
docker pull debian:sid-slim
482-
docker pull elementsproject/lightningd:v0.10.2
483-
484-
docker pull docker.io/library/rust:slim-buster
485-
486-
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/bitcoind-$(TRIPLET)/root:1679534785
487-
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/bitcoind-$(TRIPLET)/root:1679181686
488-
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/tor-$(TRIPLET)/root:1679181839
489-
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/tor-$(TRIPLET)/root:1679534813
490-
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/lnd-$(TRIPLET)/root:1679181877
491-
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/lnd-$(TRIPLET)/root:1679534818
492-
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/docs-$(TRIPLET)/root:1679181733
493-
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/docs-$(TRIPLET)/root:1679534805
494-
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/thunderhub-$(TRIPLET)/root:1679181974
495-
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/thunderhub-$(TRIPLET)/root:1679534824
496494
docker pull rust:slim-buster
497-
docker pull rust:latest
498-
docker pull alpine
499-
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/cln-$(TRIPLET)/root:1653883165
500-
docker pull elementsproject/lightningd:v0.10.2
501-
docker pull shahanafarooqui/rtl:0.11.0
495+
docker pull shahanafarooqui/rtl:0.13.6
496+
docker pull elementsproject/lightningd:latest
497+
498+
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/lnd-$(TRIPLET)/root:v0.5.10
499+
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/tor-$(TRIPLET)/root:v0.5.10
500+
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/docs-$(TRIPLET)/root:v0.5.10
501+
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/thunderhub-$(TRIPLET)/root:v0.5.10
502+
docker pull ghcr.io/randymcmillan/plebnet-playground-docker/bitcoind-$(TRIPLET)/root:v0.5.10
502503

503504
.PHONY: blocknotify
504505
blocknotify:

0 commit comments

Comments
 (0)