From e871e938c4f072ca103e1a5e4a85eda544b151ac Mon Sep 17 00:00:00 2001 From: Johan Bloemberg Date: Wed, 13 May 2026 15:52:03 +0200 Subject: [PATCH] Make sure compose.sh fetches image if needed Sometime the tag is unavailable while the image is still present under a different tag due to periodic prune --- docker/compose-dist.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/compose-dist.sh b/docker/compose-dist.sh index 2e7f88322..5db6715a4 100644 --- a/docker/compose-dist.sh +++ b/docker/compose-dist.sh @@ -7,7 +7,7 @@ set -e # determine install base for multi environment deployments (parent of directory containing this file) INTERNETNL_INSTALL_BASE=$(dirname "$(dirname "$(readlink -f "$0")")") -exec docker run -ti --rm --pull=never \ +exec docker run -ti --rm --pull=missing \ --volume /var/run/docker.sock:/var/run/docker.sock \ --volume "$INTERNETNL_INSTALL_BASE:/opt/Internet.nl" \ --workdir /opt/Internet.nl \