25 lines
532 B
YAML
25 lines
532 B
YAML
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
|