Update docker-compose.yaml
Browse files- docker-compose.yaml +5 -5
docker-compose.yaml
CHANGED
|
@@ -4,11 +4,11 @@ services:
|
|
| 4 |
image: whisper-webui:latest
|
| 5 |
|
| 6 |
volumes:
|
| 7 |
-
#
|
| 8 |
-
#
|
| 9 |
-
#
|
| 10 |
-
-
|
| 11 |
-
-
|
| 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"
|