+portaner, rename status -> uptime

This commit is contained in:
TSS Admin
2025-10-01 19:55:45 +00:00
parent a895c85948
commit c73f0627c6
3 changed files with 29 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
https://container.tss-hd.de {
# Forward requests to the Portainer container on port 9000
reverse_proxy portainer:9000
}

View File

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

24
panoptikum/portainer.yml Normal file
View File

@@ -0,0 +1,24 @@
services:
portainer:
image: portainer/portainer-ce:lts
container_name: portainer
command: --http-enabled
restart: unless-stopped
volumes:
# Mount the Docker socket to allow Portainer to manage Docker
- /var/run/docker.sock:/var/run/docker.sock
# Persist Portainer data
- portainer_data:/data
networks:
# Connect to Caddy's external network
- caddynet
- portainer_network
volumes:
portainer_data:
networks:
portainer_network:
caddynet:
# This specifies that 'caddynet' is a pre-existing network
external: true