Created
November 28, 2021 13:29
-
-
Save angelo-v/fa8ddc59d62364ebcca9170d625cdc0a to your computer and use it in GitHub Desktop.
docker-compose Konfiguration für rhasspy smart-speaker inklusive Basis-Skills aus angelo-v/rhasspy-skills
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
rhasspy: | |
container_name: rhasspy | |
image: "rhasspy/rhasspy" | |
pull_policy: always | |
ports: | |
- "12101:12101" | |
volumes: | |
- "./profiles:/profiles" | |
- "/etc/localtime:/etc/localtime:ro" | |
devices: | |
- "/dev/snd:/dev/snd" | |
command: --user-profiles /profiles --profile de | |
restart: unless-stopped | |
get-time: | |
image: "ghcr.io/angelo-v/rhasspy-skill-get-time" | |
pull_policy: always | |
restart: unless-stopped | |
environment: | |
- "TZ=Europe/Berlin" | |
weather: | |
image: "ghcr.io/angelo-v/rhasspy-skill-weather" | |
pull_policy: always | |
restart: unless-stopped | |
environment: | |
- "TZ=Europe/Berlin" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment