Fixes for nextcloud and added rhasspy
This commit is contained in:
parent
204738fb72
commit
0242569e22
2 changed files with 24 additions and 4 deletions
|
@ -8,7 +8,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- /docker/homeautomation/home-assistant:/config
|
- /docker/homeautomation/home-assistant:/config
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- home-assistant
|
- home-assistant
|
||||||
- mariadb
|
- mariadb
|
||||||
|
@ -51,7 +51,7 @@ services:
|
||||||
- /docker/homeautomation/deconz/deconz:/root/.local/share/dresden-elektronik/deCONZ
|
- /docker/homeautomation/deconz/deconz:/root/.local/share/dresden-elektronik/deCONZ
|
||||||
- /docker/homeautomation/deconz/otau:/root/otau
|
- /docker/homeautomation/deconz/otau:/root/otau
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
devices:
|
devices:
|
||||||
- /dev/ttyACM0
|
- /dev/ttyACM0
|
||||||
|
|
||||||
|
@ -67,7 +67,25 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- /docker/homeautomation/mosquitto:/mosquitto
|
- /docker/homeautomation/mosquitto:/mosquitto
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
|
|
||||||
|
rhasspy:
|
||||||
|
container_name: rhasspy
|
||||||
|
image: rhasspy/rhasspy
|
||||||
|
command: --profile en --user-profiles /profiles
|
||||||
|
volumes:
|
||||||
|
- /docker/homeautomation/rhasspy:/profiles
|
||||||
|
environment:
|
||||||
|
- TZ=Europe/Helsinki
|
||||||
|
networks:
|
||||||
|
- home-assistant
|
||||||
|
ports:
|
||||||
|
- "12101:12101"
|
||||||
|
restart: unless-stopped
|
||||||
|
depends_on:
|
||||||
|
- home-assistant
|
||||||
|
devices:
|
||||||
|
- "/dev/snd:/dev/snd"
|
||||||
|
|
||||||
node-red:
|
node-red:
|
||||||
container_name: node-red
|
container_name: node-red
|
||||||
|
@ -82,7 +100,7 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- /docker/homeautomation/node-red:/data
|
- /docker/homeautomation/node-red:/data
|
||||||
- /etc/localtime:/etc/localtime:ro
|
- /etc/localtime:/etc/localtime:ro
|
||||||
restart: always
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
- home-assistant
|
- home-assistant
|
||||||
labels:
|
labels:
|
||||||
|
|
|
@ -21,6 +21,7 @@ services:
|
||||||
- TZ=Europe/Helsinki
|
- TZ=Europe/Helsinki
|
||||||
- MYSQL_HOST=mariadb-nextcloud
|
- MYSQL_HOST=mariadb-nextcloud
|
||||||
- REDIS_HOST=redis
|
- REDIS_HOST=redis
|
||||||
|
- REDIS_HOST_PASSWORD=123
|
||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
labels:
|
labels:
|
||||||
|
@ -45,6 +46,7 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- nextcloud
|
- nextcloud
|
||||||
restart: always
|
restart: always
|
||||||
|
command: redis-server --requirepass 123
|
||||||
|
|
||||||
cron:
|
cron:
|
||||||
image: nextcloud:apache
|
image: nextcloud:apache
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue