From c2382374139e6afa001cc130016f8b0363f43bea Mon Sep 17 00:00:00 2001 From: dado Date: Thu, 13 Nov 2025 22:14:08 +0100 Subject: [PATCH] Temp fix for docker-compose.yaml with DOCKER_API_VERSION --- watchtower/docker-compose.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/watchtower/docker-compose.yml b/watchtower/docker-compose.yml index 4e46336..df93f78 100644 --- a/watchtower/docker-compose.yml +++ b/watchtower/docker-compose.yml @@ -22,4 +22,17 @@ services: WATCHTOWER_NOTIFICATION_EMAIL_SERVER: ${WATCHTOWER_NOTIFICATION_EMAIL_SERVER} WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT: ${WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT} WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER: ${WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER} - WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD: ${WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD} \ No newline at end of file + WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD: ${WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD} + DOCKER_API_VERSION: 1.52 + +# Temp fix for docker-compose.yaml +# +# --- +# services: +# watchtower: +# […] +# environment: +# DOCKER_API_VERSION: 1.52 +# +# (check your API version with docker version) +# https://github.com/containrrr/watchtower/issues/2122 \ No newline at end of file