chu2-rvc-api / docker-run.sh
ionvop's picture
Upload 110 files
08b5f9a verified
raw
history blame
268 Bytes
#!/usr/bin/env bash
#
# Runs RVC API in Docker.
set -e
tag="rvc"
docker build -t "${tag}" .
docker run -it \
-p 8000:8000 \
-v "${PWD}/assets/weights:/weights:ro" \
-v "${PWD}/assets/indices:/indices:ro" \
-v "${PWD}/assets/audios:/audios:ro" \
"${tag}"