From d8a716d85755a2044f59119cb488f2d50b0f606f Mon Sep 17 00:00:00 2001 From: John Wang Date: Mon, 15 May 2023 16:57:50 +0800 Subject: [PATCH] fix: api and worker service volumes mount error (#21) --- docker/docker-compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index 40935d2926..4090ea9d4b 100644 --- a/docker/docker-compose.yaml +++ b/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: