Add Docker Compose files for Open WebUI and Watchtower services

This commit is contained in:
pazpi 2025-05-05 22:47:59 +02:00
parent 39fbe85a5f
commit 461956b549
3 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,21 @@
services:
watchtower:
image: containrrr/watchtower
container_name: watchtower
extends:
file: "../base.yml"
service: base
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- TZ=Europe/Rome
- WATCHTOWER_SCHEDULE=0 0 4 * * *
- WATCHTOWER_CLEANUP=true
- WATCHTOWER_LABEL_ENABLE=true
- WATCHTOWER_NOTIFICATIONS=shoutrrr
- WATCHTOWER_NOTIFICATION_URL=telegram://${BOT_TOKEN}@telegram/?channels=${CHAT_ID}
labels:
- "com.centurylinklabs.watchtower.enable=true"
volumes:
open-webui: