crazyp

Untitled

Jul 25th, 2024 (edited)
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. version: '2'
  2. services:
  3. homebridge:
  4. image: homebridge/homebridge:latest
  5. container_name: homebridge
  6. volumes:
  7. - 'homebridge:/home/homebridge/app'
  8. healthcheck:
  9. test: curl --fail http://localhost:8581/ || exit 1
  10. interval: 40s
  11. timeout: 30s
  12. retries: 3
  13. start_period: 60s
  14. environment:
  15. - HOMEBRIDGE_CONFIG_UI_PORT="8581"
  16. - TZ="America/New_York"
  17. - ENABLE_AVAHI="1"
  18. - HOMEBRIDGE_CONFIG_UI="1"
  19. restart: always
  20. network_mode: host
  21. logging:
  22. driver: json-file
  23. options:
  24. max-size: 10mb
  25. max-file: '1'
Advertisement
Add Comment
Please, Sign In to add comment