compose.yaml 454 B

1234567891011121314151617181920212223
  1. ---
  2. name: "Uptime Kuma"
  3. description: "A self-hosted status monitoring solution"
  4. version: "0.0.1"
  5. date: "2023-10-01"
  6. author: "Christian Lempa"
  7. tags:
  8. - uptime-kuma
  9. - monitoring
  10. - self-hosted
  11. ---
  12. volumes:
  13. uptimekuma-data:
  14. driver: local
  15. services:
  16. uptimekuma:
  17. image: docker.io/louislam/uptime-kuma:1.23.16
  18. container_name: uptimekuma
  19. ports:
  20. - 3001:3001
  21. volumes:
  22. - uptimekuma-data:/app/data
  23. restart: unless-stopped