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