Mount embeddings to /data/embeddings for directory naming consistency

- Keeps directory paths consistent between host and container volumes
- Consistency simplifies documentation and updates required to setup
  sample_config.yml for local installation
This commit is contained in:
Debanjum Singh Solanky
2022-01-29 03:24:02 -05:00
parent b0067fc32e
commit c31abad0a6
2 changed files with 9 additions and 9 deletions

View File

@@ -26,7 +26,7 @@ services:
- ./tests/data/music/:/data/music/
# Embeddings and models are populated after the first run
# You can set these volumes to point to empty directories on host
- ./tests/data/embeddings/:/data/generated/
- ./tests/data/embeddings/:/data/embeddings/
- ./tests/data/models/:/data/models/
# Use 0.0.0.0 to explicitly set the host ip for the service on the container. https://pythonspeed.com/articles/docker-connection-refused/