From 6db817dbd93562a5e44277b3dfb8a3520991b203 Mon Sep 17 00:00:00 2001 From: Nikholas Pcenicni <82239765+nikpcenicni@users.noreply.github.com> Date: Sun, 18 Jan 2026 00:29:07 -0500 Subject: [PATCH] feat: Add Docker Compose configuration for Uptime Kuma. --- komodo/monitor/uptime/compose.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 komodo/monitor/uptime/compose.yaml diff --git a/komodo/monitor/uptime/compose.yaml b/komodo/monitor/uptime/compose.yaml new file mode 100644 index 0000000..e94f5b0 --- /dev/null +++ b/komodo/monitor/uptime/compose.yaml @@ -0,0 +1,9 @@ +services: + uptime-kuma: + image: 'louislam/uptime-kuma:2' + container_name: uptime-kuma + volumes: + - 'uptime-kuma:/app/data' + ports: + - '3001:3001' + restart: always \ No newline at end of file