diff --git a/docker-compose.yaml b/docker-compose.yaml index ae1b532..8ed84d8 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -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"