mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
Mount the Docker socket into the Uptime Kuma container to enable Docker API access, allowing the service to monitor and interact with other Docker containers for enhanced uptime tracking.
12 lines
228 B
YAML
12 lines
228 B
YAML
version: "3.8"
|
|
services:
|
|
uptime-kuma:
|
|
image: louislam/uptime-kuma:1.23.15
|
|
restart: always
|
|
volumes:
|
|
- uptime-kuma-data:/app/data
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
volumes:
|
|
uptime-kuma-data:
|