docker-compose-configs/watchtower/docker-compose.yml
root 0b420bbbbf invidious: better configuration with example and explanation
watchtower: use trusted-fast label for trusted images (generally my own images)
2025-04-07 16:52:42 -04:00

15 lines
564 B
YAML

services:
# Watchtower used for my own OCI images at https://git.nadeko.net/Fijxu/-/packages
watchtower-trusted-fast:
image: containrrr/watchtower
container_name: watchtower-trusted-fast
restart: unless-stopped
volumes: [ "/var/run/docker.sock:/var/run/docker.sock" ]
command: --interval 30 --scope trusted-fast
watchtower-trusted:
image: containrrr/watchtower
container_name: watchtower-trusted
restart: unless-stopped
volumes: [ "/var/run/docker.sock:/var/run/docker.sock" ]
command: --interval 900 --scope trusted