From 553be3539fcc475ca91ffed17208b730eef7c331 Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Fri, 31 Jul 2026 14:47:57 -0500 Subject: scrypted: pin the docker api version for watchtower watchtower (last released 2023) defaults to docker api 1.25, which docker.io 29 dropped (minimum 1.44), leaving it in a restart loop. --- scrypted/templates/docker-compose.yml.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scrypted/templates/docker-compose.yml.j2 b/scrypted/templates/docker-compose.yml.j2 index 72addbb..c19105f 100644 --- a/scrypted/templates/docker-compose.yml.j2 +++ b/scrypted/templates/docker-compose.yml.j2 @@ -123,6 +123,9 @@ services: - WATCHTOWER_HTTP_API_TOKEN={{scrypted_auth_key}} - WATCHTOWER_HTTP_API_UPDATE=true - WATCHTOWER_SCOPE=scrypted + # watchtower (last released 2023) defaults to docker api 1.25; + # docker.io 29 dropped everything below 1.44 + - DOCKER_API_VERSION=1.44 # remove the following line to never allow docker to auto update. # this is not recommended. - WATCHTOWER_HTTP_API_PERIODIC_POLLS=true -- cgit v1.2.3