Initiales einlesen der VPS Docker YMLs

This commit is contained in:
2026-05-14 09:17:47 +00:00
commit 315eb5375f
5 changed files with 138 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
services:
uptime-kuma:
image: louislam/uptime-kuma:1
container_name: uptime_kuma
restart: unless-stopped
volumes:
- /docker/uptimekuma/data:/app/data
networks:
- vps_network
deploy:
resources:
limits:
cpus: '0.5'
memory: 256M
healthcheck:
test: ["CMD", "extra/healthcheck"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
networks:
vps_network:
external: true
name: vps_network