Browse Source

fix: api and worker service volumes mount error (#21)

John Wang 1 year ago
parent
commit
d8a716d857
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docker/docker-compose.yaml

+ 2 - 2
docker/docker-compose.yaml

@@ -86,7 +86,7 @@ services:
       - weaviate
     volumes:
       # Mount the storage directory to the container, for storing user files.
-      - ./volumes/app/storage:/app/storage
+      - ./volumes/app/storage:/app/api/storage
 
   # worker service
   # The Celery worker for processing the queue.
@@ -137,7 +137,7 @@ services:
       - weaviate
     volumes:
       # Mount the storage directory to the container, for storing user files.
-      - ./volumes/app/storage:/app/storage
+      - ./volumes/app/storage:/app/api/storage
 
   # Frontend web application.
   web: