Files
glados-docker/uptimekuma/compose.yml
T
2026-05-15 08:42:40 +02:00

33 lines
651 B
YAML

services:
uptime-kuma:
image: louislam/uptime-kuma:1
container_name: uptime_kuma
restart: unless-stopped
ports:
- 3001:3001
volumes:
- /srv/docker/uptimekuma/data:/app/data
networks:
- docker_proxy_net
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:
docker_proxy_net:
external: true
name: docker_proxy_net