LAP-DEV commited on
Commit
3b9e233
·
verified ·
1 Parent(s): af0ac75

Update docker-compose.yaml

Browse files
Files changed (1) hide show
  1. docker-compose.yaml +5 -5
docker-compose.yaml CHANGED
@@ -4,11 +4,11 @@ services:
4
  image: whisper-webui:latest
5
 
6
  volumes:
7
- # Update paths to mount models and output paths to your custom paths like this, e.g:
8
- # - C:/whisper-models/custom-path:/Whisper-WebUI/models
9
- # - C:/whisper-webui-outputs/custom-path:/Whisper-WebUI/outputs
10
- - /Whisper-WebUI/models
11
- - /Whisper-WebUI/outputs
12
 
13
  ports:
14
  - "7860:7860"
 
4
  image: whisper-webui:latest
5
 
6
  volumes:
7
+ # You can mount the container's volume paths to directory paths on your local machine.
8
+ # Models will be stored in the `./models' directory on your machine.
9
+ # Similarly, all output files will be stored in the `./outputs` directory.
10
+ - ./models:/Whisper-WebUI/models
11
+ - ./outputs:/Whisper-WebUI/outputs
12
 
13
  ports:
14
  - "7860:7860"