mirror of
https://github.com/Theodor-Springmann-Stiftung/server-package.git
synced 2025-10-28 16:55:31 +00:00
+panoptikum
This commit is contained in:
5
panoptikum/caddy/Caddyfile
Normal file
5
panoptikum/caddy/Caddyfile
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
email it@tss-hd.de
|
||||
}
|
||||
|
||||
import sites/*
|
||||
27
panoptikum/caddy/docker-compose.yml
Normal file
27
panoptikum/caddy/docker-compose.yml
Normal 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:
|
||||
4
panoptikum/caddy/sites/status.tss-hd.de
Normal file
4
panoptikum/caddy/sites/status.tss-hd.de
Normal file
@@ -0,0 +1,4 @@
|
||||
status.tss-hd.de {
|
||||
reverse_proxy uptime-kuma:3001
|
||||
}
|
||||
|
||||
16
panoptikum/uptime-kuma.yml
Normal file
16
panoptikum/uptime-kuma.yml
Normal 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
|
||||
Reference in New Issue
Block a user