From 9dfa621c8d56fc4f6f8d5871ea03d92ce2158227 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Wed, 19 Mar 2025 15:45:16 -0400 Subject: [PATCH] feat: Initial commit --- README.md | 7 ++++++- compose.yaml | 23 +++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 compose.yaml diff --git a/README.md b/README.md index dd53303..3dd10f1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,8 @@ # uptime-kuma -Service monitoring tool \ No newline at end of file +Service monitoring tool +[uptime-kuma](https://github.com/louislam/uptime-kuma/tree/master) + +## Usage + +1. Clone the repository onto host machine or copy the compose.yaml file. diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..530ebc6 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,23 @@ +services: + uptime_kuma: + image: louislam/uptime-kuma:1 + container_name: uptime-kuma + restart: unless-stopped + networks: + - proxy + ports: + - 3100:3001 + volumes: + - updtime_kuma_data:/app/data + security_opt: + - no-new-privileges:true + +networks: + proxy: + external: true + +volumes: + updtime_kuma_data: + driver: local + labels: + dev.housh.description: "Uptime-kuma data volume."