23 lines
493 B
YAML
23 lines
493 B
YAML
services:
|
|
app:
|
|
container_name: uptime-kuma
|
|
image: louislam/uptime-kuma:latest
|
|
ports:
|
|
- ${UPTIMEKUMA_PORT}:3001
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- uptime-kuma:/app/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "extra/healthcheck"]
|
|
interval: 60s
|
|
timeout: 30s
|
|
retries: 5
|
|
start_period: 180s
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 512m
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
uptime-kuma: |