diff --git a/dockmon/compose.yml b/dockmon/compose.yml new file mode 100644 index 0000000..4bbfb5a --- /dev/null +++ b/dockmon/compose.yml @@ -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