Add Uptime Kuma
This commit is contained in:
parent
8972609c34
commit
8a32d4076e
3 changed files with 25 additions and 0 deletions
1
uptime-kuma/.gitignore
vendored
Normal file
1
uptime-kuma/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
/data/*
|
||||||
3
uptime-kuma/Caddyfile
Normal file
3
uptime-kuma/Caddyfile
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
status.codehal.de {
|
||||||
|
reverse_proxy uptime-kuma:3001
|
||||||
|
}
|
||||||
21
uptime-kuma/docker-compose.yml
Normal file
21
uptime-kuma/docker-compose.yml
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
uptime-kuma:
|
||||||
|
container_name: uptime-kuma
|
||||||
|
image: louislam/uptime-kuma:1
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ./data:/app/data
|
||||||
|
ports:
|
||||||
|
- 127.0.0.1:3001:3001
|
||||||
|
|
||||||
|
caddy:
|
||||||
|
container_name: caddy
|
||||||
|
image: caddy
|
||||||
|
restart: unless-stopped
|
||||||
|
volumes:
|
||||||
|
- ./Caddyfile:/etc/caddy/Caddyfile:ro
|
||||||
|
ports:
|
||||||
|
- 80:80
|
||||||
|
- 443:443
|
||||||
Loading…
Add table
Add a link
Reference in a new issue