+panoptikum

This commit is contained in:
TSS Admin
2025-10-01 18:43:54 +00:00
parent 95e7b8ed96
commit a895c85948
10 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
{
email it@tss-hd.de
}
import sites/*

View File

@@ -0,0 +1,27 @@
services:
caddy:
# Use the official Caddy image
image: docker.io/library/caddy:latest
# Always restart the container unless it's manually stopped
restart: unless-stopped
ports:
- "80:80"
- "443:443"
# HTTP3:
- "443:443/udp"
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
- ./sites:/etc/caddy/sites
- caddy_data:/data
- caddy_config:/config
networks:
- caddynet
networks:
caddynet:
external: true
# Define the named volumes for persistent storage
volumes:
caddy_data:
caddy_config:

View File

@@ -0,0 +1,4 @@
status.tss-hd.de {
reverse_proxy uptime-kuma:3001
}

View File

@@ -0,0 +1,16 @@
services:
uptime-kuma:
image: louislam/uptime-kuma:1
container_name: uptime-kuma
restart: unless-stopped
volumes:
- uptime-kuma:/app/data
networks:
- caddynet
volumes:
uptime-kuma:
networks:
caddynet:
external: true