| 12345678910111213141516171819202122232425 |
- ---
- kind: "compose"
- metadata:
- name: "Uptime Kuma"
- description: "A self-hosted status monitoring solution"
- version: "0.0.1"
- date: "2023-10-01"
- author: "Christian Lempa"
- tags:
- - uptime-kuma
- - monitoring
- - self-hosted
- ---
- volumes:
- uptimekuma-data:
- driver: local
- services:
- uptimekuma:
- image: docker.io/louislam/uptime-kuma:1.23.16
- container_name: uptimekuma
- ports:
- - 3001:3001
- volumes:
- - uptimekuma-data:/app/data
- restart: unless-stopped
|