Skip to content

Instantly share code, notes, and snippets.

@angelo-v
Created November 28, 2021 13:29
Show Gist options
  • Save angelo-v/fa8ddc59d62364ebcca9170d625cdc0a to your computer and use it in GitHub Desktop.
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
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