Exclude unupdatable containers from Watchtower

- dns-updateip: local image not on any registry
- immich redis/postgres: pinned by digest, no floating tag
This commit is contained in:
2026-02-28 16:07:23 +00:00
parent dce25c6ed4
commit 3417fdcfaa
2 changed files with 6 additions and 0 deletions
+2
View File
@@ -8,6 +8,8 @@ services:
stdin_open: true stdin_open: true
tty: true tty: true
labels:
- com.centurylinklabs.watchtower.enable=false
environment: environment:
- APIKEY=${APIKEY} - APIKEY=${APIKEY}
- HOST=kolpacksoftware.com,rmstsa.org,popcyclical.com - HOST=kolpacksoftware.com,rmstsa.org,popcyclical.com
+4
View File
@@ -53,6 +53,8 @@ services:
redis: redis:
container_name: immich_redis container_name: immich_redis
image: docker.io/redis:6.2-alpine@sha256:148bb5411c184abd288d9aaed139c98123eeb8824c5d3fce03cf721db58066d8 image: docker.io/redis:6.2-alpine@sha256:148bb5411c184abd288d9aaed139c98123eeb8824c5d3fce03cf721db58066d8
labels:
- com.centurylinklabs.watchtower.enable=false
healthcheck: healthcheck:
test: redis-cli ping || exit 1 test: redis-cli ping || exit 1
restart: always restart: always
@@ -60,6 +62,8 @@ services:
database: database:
container_name: immich_postgres container_name: immich_postgres
image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52 image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52
labels:
- com.centurylinklabs.watchtower.enable=false
environment: environment:
POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_USER: ${DB_USERNAME} POSTGRES_USER: ${DB_USERNAME}