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: {}