From f92965415b2cf2000e3801174c14dfcdb085daae Mon Sep 17 00:00:00 2001 From: Oleksandr <68346266+cr1ma@users.noreply.github.com> Date: Fri, 6 Dec 2024 01:00:27 +0200 Subject: [PATCH] chore: update volume paths in docker-compose.yaml - Updated volume paths in `docker-compose.yaml` to use relative paths (`./models` and `./outputs`) for easier configuration. - Added comments to guide users on placing models and accessing output files. --- docker-compose.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index ae1b5327..8ed84d8b 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"