compose.yml 387 B

1234567891011
  1. version: "2"
  2. services:
  3. homer:
  4. image: docker-registry.local:5000/uptimekuma_homer:latest # Or just `uptimekuma_homer:latest`, in case you aren't using your own Docker registry
  5. environment:
  6. - UKH_PORT=8099
  7. - UKH_HOST=http://uptime-kuma.local
  8. - UKH_API_KEY=<Create in Uptime Kuma -> Settings -> API Keys>
  9. ports:
  10. - 8099:8099
  11. restart: unless-stopped