Compare commits
2 commits
ee949abf86
...
06c0cec0ed
Author | SHA1 | Date | |
---|---|---|---|
|
06c0cec0ed | ||
|
23d7e161bd |
1 changed files with 19 additions and 0 deletions
19
whisper/docker-compose.yml
Normal file
19
whisper/docker-compose.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
---
|
||||||
|
version: "2.1"
|
||||||
|
services:
|
||||||
|
whisperasr:
|
||||||
|
container_name: whisper
|
||||||
|
image: onerahmet/openai-whisper-asr-webservice:v1.4.1-gpu
|
||||||
|
environment:
|
||||||
|
- ASR_MODEL=base.en
|
||||||
|
- ASR_ENGINE=faster_whisper
|
||||||
|
ports:
|
||||||
|
- 9000:9000
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
reservations:
|
||||||
|
devices:
|
||||||
|
- driver: nvidia
|
||||||
|
count: 1
|
||||||
|
capabilities: [gpu]
|
||||||
|
restart: unless-stopped
|
Reference in a new issue