Advertisement
Guest User

Untitled

a guest
Mar 24th, 2025
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. version: '3'
  2. ###
  3. networks:
  4. hass:
  5. \# hassvlan:
  6. \# external: true
  7. ###
  8. services:
  9. homeassistant:
  10. container_name: Home-Assistant
  11. image: ghcr.io/home-assistant/home-assistant:stable
  12. \# user: 1001:1001
  13. networks:
  14. \# hassvlan:
  15. \# ipv4_address: 192.168.0.###
  16. hass:
  17. volumes:
  18. \- /opt/homeassistant/config:/config
  19. \# - /docker/certbot/certs/live/<DOMAIN>/fullchain.pem:/ssl/fullchain.pem:ro
  20. \# - /docker/certbot/certs/live/<DOMAIN>/privkey.pem:/ssl/privkey.pem:ro
  21. \- /etc/timezone:/etc/timezone:ro
  22. \- /etc/localtime:/etc/localtime:ro
  23. environment:
  24. \- TZ=Europe/London
  25. restart: always
  26. ##
  27. whisper:
  28. container_name: Whisper
  29. image: rhasspy/wyoming-whisper
  30. user: 1001:1001
  31. networks:
  32. \- hass
  33. volumes:
  34. \- /opt/whisper:/data
  35. \- /etc/timezone:/etc/timezone:ro
  36. \- /etc/localtime:/etc/localtime:ro
  37. environment:
  38. \- TZ=Europe/London
  39. command: --model small-int8 --language en
  40. restart: unless-stopped
  41. ##
  42. piper:
  43. container_name: Piper
  44. image: rhasspy/wyoming-piper
  45. user: 1001:1001
  46. networks:
  47. \- hass
  48. volumes:
  49. \- /opt/piper:/data
  50. \- /etc/timezone:/etc/timezone:ro
  51. \- /etc/localtime:/etc/localtime:ro
  52. environment:
  53. \- TZ=Europe/London
  54. command: --voice en_GB-cori-medium
  55. restart: unless-stopped
  56. ##
  57. openwakeword:
  58. container_name: openwakeword
  59. image: rhasspy/wyoming-openwakeword
  60. user: 1001:1001
  61. networks:
  62. \- hass
  63. volumes:
  64. \- /opt/wakeword:/data
  65. \- /opt/wakeword:/custom
  66. \- /etc/timezone:/etc/timezone:ro
  67. \- /etc/localtime:/etc/localtime:ro
  68. environment:
  69. \- TZ=Europe/London
  70. command: --preload-model 'ok_nabu' --custom-model-dir /custom
  71. restart: unless-stopped
  72. ##
  73. esphome:
  74. container_name: esphome_hass
  75. image: esphome/esphome
  76. networks:
  77. \- hass
  78. \# ports:
  79. \# - "6052:6052/tcp"
  80. \# - "6053:6053/tcp"
  81. volumes:
  82. \- /opt/esphome/config:/config
  83. \- /etc/localtime:/etc/localtime:ro
  84. restart: always
  85. privileged: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement