Ajouter docker-compose/uptime-kuma/docker-compose.yml

This commit is contained in:
toma 2026-01-27 22:58:02 +01:00
parent af37a5d91b
commit 53b6ce476e

View File

@ -0,0 +1,15 @@
# Simple docker-compose.yml
# You can change your port or volume location
---
version: '3.3'
services:
uptime-kuma:
image: louislam/uptime-kuma:latest
container_name: uptime-kuma
volumes:
- /opt/uptime-kuma-data:/app/data
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 3001:3001 # <Host Port>:<Container Port>
restart: always