mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2025-05-13 07:02:08 +02:00
21 lines
389 B
YAML
21 lines
389 B
YAML
services:
|
|
# Uptime Kuma
|
|
uptime-kuma:
|
|
image: louislam/uptime-kuma:latest
|
|
container_name: uptime-kuma
|
|
profiles:
|
|
- uptime-kuma
|
|
volumes:
|
|
- uptimekuma_data:/app/data
|
|
restart: on-failure:5
|
|
depends_on:
|
|
- caddy
|
|
networks:
|
|
- infra-network
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
|
|
volumes:
|
|
uptimekuma_data:
|
|
name: uptimekuma_data
|