From ee5ceb06c3b99dab2df897467a83aa39245cf40e Mon Sep 17 00:00:00 2001 From: Gal Date: Wed, 3 Jan 2024 01:02:15 +0700 Subject: [PATCH] Add uptime kuma --- Makefile | 2 +- uptime-kuma/docker-compose.yml | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 uptime-kuma/docker-compose.yml diff --git a/Makefile b/Makefile index a6c3f6e..0989029 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ include .env -SERVICES = actualbudget gitea homepage linkding nextcloud photoprism restic syncthing traefik +SERVICES = actualbudget gitea homepage linkding nextcloud photoprism restic syncthing traefik uptime-kuma # Default target: upload .env files for all services upload: $(addprefix upload-,$(SERVICES)) diff --git a/uptime-kuma/docker-compose.yml b/uptime-kuma/docker-compose.yml new file mode 100644 index 0000000..55556a7 --- /dev/null +++ b/uptime-kuma/docker-compose.yml @@ -0,0 +1,11 @@ +version: '3.8' + +services: + uptime-kuma: + image: louislam/uptime-kuma:1 + container_name: uptime-kuma + restart: always + ports: + - "${HOST}:4005:3000" + volumes: + - uptime-kuma:/app/data