Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update volume paths in docker-compose.yaml #416

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading