Add uptime kuma
This commit is contained in:
parent
fee0d34a06
commit
ee5ceb06c3
2
Makefile
2
Makefile
|
@ -1,6 +1,6 @@
|
||||||
include .env
|
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
|
# Default target: upload .env files for all services
|
||||||
upload: $(addprefix upload-,$(SERVICES))
|
upload: $(addprefix upload-,$(SERVICES))
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue