File size: 814 Bytes
ea4da3a d75b1ca ea4da3a d75b1ca |
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 |
version: '3.8'
services:
wav2vec-service:
image: duyta506/graduation:wav2vec-lastest
container_name: wav2vec-container
ports:
- "3000:3000"
restart: unless-stopped
environment:
- NVIDIA_VISIBLE_DEVICES=all
- NVIDIA_DRIVER_CAPABILITIES=compute,utility
deploy:
resources:
reservations:
devices:
- capabilities: [gpu]
runtime: nvidia
whisper-service:
image: duyta506/graduation:whisper-latest-gpu12.0
container_name: whisper-container
ports:
- "5678:5678"
restart: unless-stopped
environment:
- NVIDIA_VISIBLE_DEVICES=all
- NVIDIA_DRIVER_CAPABILITIES=compute,utility
deploy:
resources:
reservations:
devices:
- capabilities: [gpu]
runtime: nvidia
|