commit 033a18ac5ed5abe6b4171e71e55ef6d1f325ab55 Author: host Date: Wed Aug 26 02:01:43 2026 +0300 Добавить docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..2afe496 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,24 @@ +services: + dockmon: + container_name: dockmon + environment: + - TZ=Europe/Moscow + healthcheck: + interval: 30s + retries: 3 + test: + - CMD + - curl + - -k + - -f + - https://localhost:443/health + timeout: 10s + image: darthnorse/dockmon:latest + ports: + - 8001:443 + restart: unless-stopped + volumes: + - /mnt/ssd/apps/dockmon:/app/data + # - /mnt/ssd/apps/dockge/stacks:/stacks + - /var/run/docker.sock:/var/run/docker.sock +networks: {}