From afa0faa9d4a79479c52d629fb0455d382358c7a0 Mon Sep 17 00:00:00 2001 From: sven Date: Fri, 30 Jan 2026 15:08:55 +0100 Subject: [PATCH] Hochfahren, damit Clients online bleiben --- uptime-kuma/compose.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 uptime-kuma/compose.yaml diff --git a/uptime-kuma/compose.yaml b/uptime-kuma/compose.yaml new file mode 100755 index 0000000..097756c --- /dev/null +++ b/uptime-kuma/compose.yaml @@ -0,0 +1,24 @@ +services: + uptime-kuma: + image: louislam/uptime-kuma + container_name: uptime-kuma + labels: + - wud.watch=true + - com.hanold.environment=production + deploy: + resources: + limits: + memory: 256M + volumes: + - ./data:/app/data + ports: + - 9011:3001 + restart: unless-stopped + environment: + UPTIME_KUMA_DB_TYPE: mariadb + UPTIME_KUMA_DB_HOSTNAME: 192.168.178.170 + UPTIME_KUMA_DB_PORT: 3306 + UPTIME_KUMA_DB_USERNAME: uptimekuma + UPTIME_KUMA_DB_PASSWORD: dbpass + UPTIME_KUMA_DB_NAME: uptimekuma +networks: {}