Home automation: Remove disabled services

This commit is contained in:
Marko Korhonen 2025-03-28 21:40:56 -05:00
parent 2b647d527e
commit 3d99beff23

View file

@ -25,20 +25,20 @@ services:
- 8300:8300 - 8300:8300
extra_hosts: extra_hosts:
- host.docker.internal:host-gateway - host.docker.internal:host-gateway
mosquitto: # mosquitto:
container_name: mosquitto # container_name: mosquitto
image: eclipse-mosquitto # image: eclipse-mosquitto
restart: unless-stopped # restart: unless-stopped
environment: # environment:
- TZ=Europe/Helsinki # - TZ=Europe/Helsinki
networks: # networks:
- homeautomation # - homeautomation
ports: # ports:
- 1883:1883 # - 1883:1883
- 8866:8866 # - 8866:8866
volumes: # volumes:
- mosquitto:/mosquitto # - mosquitto:/mosquitto
- /etc/localtime:/etc/localtime:ro # - /etc/localtime:/etc/localtime:ro
piper_english: piper_english:
container_name: piper_english container_name: piper_english
image: rhasspy/wyoming-piper image: rhasspy/wyoming-piper
@ -75,85 +75,6 @@ services:
volumes: volumes:
- whisper_english:/data - whisper_english:/data
- /etc/localtime:/etc/localtime:ro - /etc/localtime:/etc/localtime:ro
openwakeword_english:
container_name: openwakeword_english
image: rhasspy/wyoming-openwakeword
restart: unless-stopped
environment:
- TZ=Europe/Helsinki
networks:
- homeautomation
command:
- --preload-model
- ok_nabu
depends_on:
- home-assistant
volumes:
- openwakeword_english:/data
- /etc/localtime:/etc/localtime:ro
microphone:
build: https://github.com/rhasspy/wyoming-mic-external.git
image: rhasspy/wyoming-mic-external
container_name: microphone
restart: unless-stopped
devices:
- /dev/snd:/dev/snd
ports:
- 10600:10600
group_add:
- audio
networks:
- homeautomation
command:
- --device
- plughw:CARD=USB,DEV=0
- --debug
volumes:
- /etc/localtime:/etc/localtime:ro
speaker:
build: https://github.com/rhasspy/wyoming-snd-external.git
image: rhasspy/wyoming-snd-external
container_name: speaker
restart: unless-stopped
devices:
- /dev/snd:/dev/snd
ports:
- 10601:10601
group_add:
- audio
networks:
- homeautomation
command:
- --device
- iec958:CARD=USB,DEV=0
- --debug
volumes:
- /etc/localtime:/etc/localtime:ro
satellite:
build: https://github.com/rhasspy/wyoming-satellite.git
image: rhasspy/wyoming-satellite
container_name: satellite
restart: unless-stopped
ports:
- 10700:10700
networks:
- homeautomation
depends_on:
- speaker
- microphone
- whisper_english
command:
- --name
- ha-server-satellite
- --mic-uri
- tcp://microphone:10600
- --snd-uri
- tcp://speaker:10601
- --wake-uri
- tcp://openwakeword_english:10400
- --debug
volumes:
- /etc/localtime:/etc/localtime:ro
networks: networks:
homeautomation: homeautomation:
external: false external: false