Advertisement
Guest User

Compose

a guest
Apr 26th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. version: '3.3'
  2.  
  3. services:
  4.  
  5. portainer:
  6. container_name: portainer
  7. image: portainer/portainer:1.19.2
  8. restart: always
  9. ports:
  10. - 9000:9000
  11. volumes:
  12. - ./portainer:/data
  13. - /var/run/docker.sock:/var/run/docker.sock
  14.  
  15. home_assistant:
  16. container_name: homeassistant
  17. image: homeassistant/home-assistant:latest # x86_64/amd64
  18. restart: always
  19. network_mode: host
  20. depends_on:
  21. - "influxdb"
  22. ports:
  23. - 8123:8123
  24. volumes:
  25. - ./homeassistant/config:/config
  26. - /etc/localtime:/etc/localtime:ro
  27.  
  28. esphome:
  29. container_name: esphome
  30. image: esphome/esphome
  31. restart: always
  32. network_mode: host
  33. environment:
  34. - TZ=Europe/Volgograd
  35. volumes:
  36. - ./esphomeyaml:/config
  37. command: config/ dashboard
  38.  
  39. eclipse-mosquitto:
  40. container_name: mosquitto
  41. image: eclipse-mosquitto
  42. restart: always
  43. volumes:
  44. - ./mosquitto/config:/mosquitto/config
  45. - ./mosquitto/data:/mosquitto/data
  46. - ./mosquitto/log:/mosquitto/log
  47. ports:
  48. - 1883:1883
  49. user: '1000:1000'
  50.  
  51. happybubbles-presence:
  52. image: "johncardenas/happybubbles-presence:latest"
  53. restart: always
  54. environment:
  55. MQTT_HOST: "10.0.1.11:1883"
  56. MQTT_USERNAME: "alex"
  57. MQTT_PASSWORD: "denimm99"
  58. ports:
  59. - 5555:5555
  60.  
  61. grafana:
  62. container_name: Grafana
  63. image: grafana/grafana:5.1.0
  64. restart: always
  65. ports:
  66. - 3000:3000
  67. user: "104"
  68.  
  69. graphite:
  70. container_name: Graphite
  71. image: graphiteapp/graphite-statsd
  72. restart: always
  73. ports:
  74. - 8000:8000
  75. - 2003:2003
  76. - 2004:2004
  77. - 8080:8080
  78. volumes:
  79. - ./graphite:/opt/graphite/storage/whisper
  80.  
  81. influxdb:
  82. container_name: influx
  83. image: influxdb:latest
  84. restart: always
  85. environment:
  86. - INFLUXDB_DB="homeassist"
  87. - INFLUXDB_ADMIN_ENABLED="true"
  88. - INFLUXDB_ADMIN_USER="admin"
  89. - INFLUXDB_ADMIN_PASSWORD="admin"
  90. - INFLUXDB_USER="alex"
  91. - INFLUXDB_USER_PASSWORD="denimm99"
  92. ports:
  93. - 8086:8086
  94. - 8083:8083
  95. volumes:
  96. - "influxdb:/var/lib/influxdb"
  97.  
  98. volumes:
  99. influxdb:
  100. external: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement