Introduced uptime kuma
This commit is contained in:
15
traefik/config/uptime-kuma.yml
Normal file
15
traefik/config/uptime-kuma.yml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
# /services/traefik/config/uptime-kuma.yml
|
||||||
|
|
||||||
|
http:
|
||||||
|
routers:
|
||||||
|
status:
|
||||||
|
entryPoints:
|
||||||
|
- https
|
||||||
|
rule: Host(`status.eliasfink.de`)
|
||||||
|
service: uptime-kuma
|
||||||
|
|
||||||
|
services:
|
||||||
|
uptime-kuma:
|
||||||
|
loadBalancer:
|
||||||
|
servers:
|
||||||
|
- url: http://uptime-kuma:3001
|
||||||
16
uptime-kuma/compose.yml
Normal file
16
uptime-kuma/compose.yml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
# /services/uptime-kuma/compose.yml
|
||||||
|
|
||||||
|
services:
|
||||||
|
uptime-kuma:
|
||||||
|
image: louislam/uptime-kuma:1
|
||||||
|
container_name: uptime-kuma
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
- traefik
|
||||||
|
volumes:
|
||||||
|
- ./data:/app/data
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
|
||||||
|
networks:
|
||||||
|
traefik:
|
||||||
|
external: true
|
||||||
Reference in New Issue
Block a user