Advertisement
Guest User

Untitled

a guest
Apr 5th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. version: '3.2'
  2. services:
  3. homieMonitor:
  4. container_name: homieMonitor
  5. environment:
  6. - HM_MQTT_HOST=192.168.1.1
  7. - HM_MQTT_PORT=1883
  8. - HM_MQTT_SSL_ENABLE_FLAG=true
  9. - HM_MQTT_USER=mqtt
  10. - HM_MQTT_PASS=superSecret
  11. - HM_BASE_TOPICS=[["homie/#",0]]
  12. image: stritti/homie-monitor:latest
  13. ports:
  14. - target: 8585
  15. published: 8585
  16. protocol: tcp
  17. mode: host
  18. restart: always
  19. tty: true
  20. volumes:
  21. - type: bind
  22. source: /srv/homieMonitor/tmp
  23. target: /tmp/homieMonitor
  24. - type: bind
  25. source: /srv/homieMonitor/content
  26. target: /usr/src/app/content
  27. - type: bind
  28. source: /srv/homieMonitor/db
  29. target: /usr/src/app/db
  30. - type: bind
  31. source: /srv/homieMonitor/settings
  32. target: /usr/src/app/config/settings
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement