forked from janvarev/Irene-Voice-Assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
22 lines (22 loc) · 976 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
version: '3.5'
services:
irene-voice-assistant-docker:
image: firefly27/irene-voice-assistant-docker
container_name: irene-voice-assistant-docker
devices:
- /dev/snd:/dev/snd
volumes:
- ./requirements-docker.txt:/home/python/irene/requirements-docker.txt #requirements для установки внутри контейнера
- ./irene_options:/home/python/irene/options #основные настройки
- ./docker_plugins:/home/python/irene/plugins #папка для плагинов
- ./runva_webapi_docker.json:/home/python/irene/runva_webapi.json #настройка webapi
ports:
- 5003:5003
- 5004:5004
tty: true
logging:
driver: syslog
options:
mode: non-blocking
restart: unless-stopped
# command: sh -c "pip install --no-cache-dir -r requirements-docker.txt && python3 runva_webapi.py & python3 vosk_asr_server.py"