added dockmon

This commit is contained in:
2025-10-10 15:15:12 +00:00
parent d58253a371
commit 63d9a0015d

24
dockmon/compose.yml Normal file
View File

@@ -0,0 +1,24 @@
services:
dockmon:
image: darthnorse/dockmon:latest
container_name: dockmon
environment:
- TZ=America/Chicago
healthcheck:
test: ["CMD", "curl", "-k", "-f", "https://localhost:443/health"]
interval: 30s
timeout: 10s
retries: 3
restart: unless-stopped
networks:
- reverse-proxy
ports:
- "8001:443"
volumes:
- ./data:/app/data
- /var/run/docker.sock:/var/run/docker.sock
networks:
reverse-proxy:
name: reverse-proxy
external: true