Uptime Kuma compose yml File
-
Here I want to share my yml File, because there are very few on the Internet.
version: '3.3' services: uptime-kuma: image: louislam/uptime-kuma:1 container_name: uptime-kuma volumes: - ./uptime-kuma-data:/app/data - /var/run/docker.sock:/var/run/docker.sock ports: - 3001:3001 # <Host Port>:<Container Port> restart: always healthcheck: test: ["CMD", "curl", "-f", "http://localhost:3001"] interval: 5s timeout: 3s retries: 5 start_period: 10s