Fedir Zadniprovskyi 2024-09-08
chore: update docker compose to use volume instead of bind mount for hf cache
@75d5465d16a276eb5ce1f6e0e264cc9b1c8a93d0
compose.yaml
--- compose.yaml
+++ compose.yaml
@@ -10,7 +10,7 @@
         - linux/amd64
         - linux/arm64
     volumes:
-      - ~/.cache/huggingface:/root/.cache/huggingface
+      - hugging_face_cache:/root/.cache/huggingface
     restart: unless-stopped
     ports:
       - 8000:8000
@@ -38,7 +38,7 @@
         - linux/amd64
         - linux/arm64
     volumes:
-      - ~/.cache/huggingface:/root/.cache/huggingface
+      - hugging_face_cache:/root/.cache/huggingface
     restart: unless-stopped
     ports:
       - 8000:8000
@@ -46,3 +46,5 @@
       watch:
         - path: faster_whisper_server
           action: rebuild
+volumes:
+  hugging_face_cache:
Add a comment
List