mirror of
https://github.com/aykhans/my-self-host-services.git
synced 2025-09-03 17:53:33 +00:00
Add uptime kuma
This commit is contained in:
1
uptime_kuma/.env.example
Normal file
1
uptime_kuma/.env.example
Normal file
@@ -0,0 +1 @@
|
||||
CADDY_DOMAIN=sub.example.com
|
2
uptime_kuma/.gitignore
vendored
Normal file
2
uptime_kuma/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
/data/*
|
||||
!.gitkeep
|
0
uptime_kuma/data/.gitkeep
Normal file
0
uptime_kuma/data/.gitkeep
Normal file
18
uptime_kuma/docker-compose.yml
Normal file
18
uptime_kuma/docker-compose.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
networks:
|
||||
caddy:
|
||||
name: caddy
|
||||
driver: bridge
|
||||
external: true
|
||||
|
||||
services:
|
||||
uptime-kuma:
|
||||
image: louislam/uptime-kuma:1
|
||||
container_name: uptime_kuma
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./data/app:/app/data
|
||||
networks:
|
||||
- caddy
|
||||
labels:
|
||||
caddy: ${CADDY_DOMAIN}
|
||||
caddy.reverse_proxy: "* {{upstreams 3001}}"
|
Reference in New Issue
Block a user