From 0caff3da774b6c48aca5aa5c6d14042fe262e26c Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 2 Nov 2025 16:09:01 +0100 Subject: [PATCH] =?UTF-8?q?whatsupdocker/docker-compose.yml=20hinzugef?= =?UTF-8?q?=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- whatsupdocker/docker-compose.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 whatsupdocker/docker-compose.yml diff --git a/whatsupdocker/docker-compose.yml b/whatsupdocker/docker-compose.yml new file mode 100644 index 0000000..9b4e97d --- /dev/null +++ b/whatsupdocker/docker-compose.yml @@ -0,0 +1,26 @@ +services: + whatsupdocker: + image: fmartinou/whats-up-docker + container_name: WUD + mem_limit: 128m + mem_reservation: 50m + cpu_shares: 256 + security_opt: + - no-new-privileges=true + read_only: true + volumes: + - /var/run/docker.sock:/var/run/docker.sock:ro + - /volume1/docker/wud:/store + ports: + - 3555:3000 + environment: + - WUD_WATCHER_LOCAL_CRON=0 18 * * * + - WUD_TRIGGER_SMTP_GMAIL_HOST=smtp.strato.de + - WUD_TRIGGER_SMTP_GMAIL_PORT=465 + - WUD_TRIGGER_SMTP_GMAIL_USER=michael.scheidel@scheidel.biz + - WUD_TRIGGER_SMTP_GMAIL_PASS=?EAM?Yes!01 + - WUD_TRIGGER_SMTP_GMAIL_FROM=michael.scheidel@scheidel.biz + - WUD_TRIGGER_SMTP_GMAIL_TO=michael.scheidel@scheidel.biz + - WUD_TRIGGER_SMTP_GMAIL_TLS_ENABLED=true + - WUD_TRIGGER_SMTP_GMAIL_SIMPLETITLE=Container $${name} Update verfügbar + - WUD_TRIGGER_SMTP_GMAIL_SIMPLEBODY=Container $${name} Kann von Version $${local} nach Version $${remote} aktualisiert werden. \ No newline at end of file