Skip to content

Commit

Permalink
Merge pull request #416 from cr1ma/refactor/optimize-docker-compose
Browse files Browse the repository at this point in the history
chore: update volume paths in docker-compose.yaml
  • Loading branch information
jhj0517 authored Dec 6, 2024
2 parents 972e58a + f929654 commit 0652709
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ services:
image: jhj0517/whisper-webui:latest

volumes:
# Update paths to mount models and output paths to your custom paths like this, e.g:
# - C:/whisper-models/custom-path:/Whisper-WebUI/models
# - C:/whisper-webui-outputs/custom-path:/Whisper-WebUI/outputs
- /Whisper-WebUI/models
- /Whisper-WebUI/outputs
# You can place your models in the `./models` directory on your machine
# and they will be automatically available in the Docker container.
# Similarly, all output files will be stored in the `./outputs` directory.
- ./models:/Whisper-WebUI/models
- ./outputs:/Whisper-WebUI/outputs

ports:
- "7860:7860"
Expand Down

0 comments on commit 0652709

Please sign in to comment.