src.nth.io/

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2026-07-31 14:47:57 -0500
committerLuke Hoersten <[email protected]>2026-07-31 14:47:57 -0500
commit553be3539fcc475ca91ffed17208b730eef7c331 (patch)
tree7a6f3fcecf11719f4443196e0827c07cab63af9f
parent3ad4754b313d21d8969405e89f9b9aeb77d799ac (diff)
scrypted: pin the docker api version for watchtowerHEADmain
watchtower (last released 2023) defaults to docker api 1.25, which docker.io 29 dropped (minimum 1.44), leaving it in a restart loop.
-rw-r--r--scrypted/templates/docker-compose.yml.j23
1 files changed, 3 insertions, 0 deletions
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