-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathdocker-compose.prod.yml
More file actions
37 lines (32 loc) · 728 Bytes
/
docker-compose.prod.yml
File metadata and controls
37 lines (32 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: '3.10'
services:
bot:
image: ghcr.io/wotschofsky/discord-live-translator
restart: always
env_file: .env
environment:
- REDIS_URL=redis://redis:6379
- STT_HOST=http://stt:8000
- TRANSLATION_HOST=http://libretranslate:5000
depends_on:
- stt
- libretranslate
- redis
stt:
image: ghcr.io/wotschofsky/discord-live-translator/stt
restart: always
libretranslate:
image: libretranslate/libretranslate:v1.3.11
restart: always
environment:
- LT_LOAD_ONLY=de,en,es,fr,it
stdin_open: true
tty: true
redis:
image: redis:alpine
command: redis-server
restart: always
volumes:
- redis:/data
volumes:
redis: