Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: '3'
- ###
- networks:
- hass:
- \# hassvlan:
- \# external: true
- ###
- services:
- homeassistant:
- container_name: Home-Assistant
- image: ghcr.io/home-assistant/home-assistant:stable
- \# user: 1001:1001
- networks:
- \# hassvlan:
- \# ipv4_address: 192.168.0.###
- hass:
- volumes:
- \- /opt/homeassistant/config:/config
- \# - /docker/certbot/certs/live/<DOMAIN>/fullchain.pem:/ssl/fullchain.pem:ro
- \# - /docker/certbot/certs/live/<DOMAIN>/privkey.pem:/ssl/privkey.pem:ro
- \- /etc/timezone:/etc/timezone:ro
- \- /etc/localtime:/etc/localtime:ro
- environment:
- \- TZ=Europe/London
- restart: always
- ##
- whisper:
- container_name: Whisper
- image: rhasspy/wyoming-whisper
- user: 1001:1001
- networks:
- \- hass
- volumes:
- \- /opt/whisper:/data
- \- /etc/timezone:/etc/timezone:ro
- \- /etc/localtime:/etc/localtime:ro
- environment:
- \- TZ=Europe/London
- command: --model small-int8 --language en
- restart: unless-stopped
- ##
- piper:
- container_name: Piper
- image: rhasspy/wyoming-piper
- user: 1001:1001
- networks:
- \- hass
- volumes:
- \- /opt/piper:/data
- \- /etc/timezone:/etc/timezone:ro
- \- /etc/localtime:/etc/localtime:ro
- environment:
- \- TZ=Europe/London
- command: --voice en_GB-cori-medium
- restart: unless-stopped
- ##
- openwakeword:
- container_name: openwakeword
- image: rhasspy/wyoming-openwakeword
- user: 1001:1001
- networks:
- \- hass
- volumes:
- \- /opt/wakeword:/data
- \- /opt/wakeword:/custom
- \- /etc/timezone:/etc/timezone:ro
- \- /etc/localtime:/etc/localtime:ro
- environment:
- \- TZ=Europe/London
- command: --preload-model 'ok_nabu' --custom-model-dir /custom
- restart: unless-stopped
- ##
- esphome:
- container_name: esphome_hass
- image: esphome/esphome
- networks:
- \- hass
- \# ports:
- \# - "6052:6052/tcp"
- \# - "6053:6053/tcp"
- volumes:
- \- /opt/esphome/config:/config
- \- /etc/localtime:/etc/localtime:ro
- restart: always
- privileged: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement