Create asr-compose.yaml
#3
by
tuananh18
- opened
- asr-compose.yaml +22 -0
asr-compose.yaml
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
version: '3.8'
|
2 |
+
|
3 |
+
services:
|
4 |
+
wav2vec-service:
|
5 |
+
image: duyta506/graduation:wav2vec-lastest
|
6 |
+
container_name: wav2vec-container
|
7 |
+
ports:
|
8 |
+
- "3000:3000"
|
9 |
+
restart: unless-stopped
|
10 |
+
environment:
|
11 |
+
- NVIDIA_VISIBLE_DEVICES=all
|
12 |
+
- NVIDIA_DRIVER_CAPABILITIES=compute,utility
|
13 |
+
|
14 |
+
whisper-service:
|
15 |
+
image: duyta506/graduation:whisper-latest-gpu12.0
|
16 |
+
container_name: whisper-container
|
17 |
+
ports:
|
18 |
+
- "5678:5678"
|
19 |
+
restart: unless-stopped
|
20 |
+
environment:
|
21 |
+
- NVIDIA_VISIBLE_DEVICES=all
|
22 |
+
- NVIDIA_DRIVER_CAPABILITIES=compute,utility
|