diff --git a/.gitignore b/.gitignore index 66249653d7..5763fa74f6 100644 --- a/.gitignore +++ b/.gitignore @@ -144,6 +144,16 @@ api/.idea api/.env api/storage/* +docker-legacy/volumes/app/storage/* +docker-legacy/volumes/db/data/* +docker-legacy/volumes/redis/data/* +docker-legacy/volumes/weaviate/* +docker-legacy/volumes/qdrant/* +docker-legacy/volumes/etcd/* +docker-legacy/volumes/minio/* +docker-legacy/volumes/milvus/* +docker-legacy/volumes/chroma/* + docker/volumes/app/storage/* docker/volumes/db/data/* docker/volumes/redis/data/* @@ -154,6 +164,8 @@ docker/volumes/minio/* docker/volumes/milvus/* docker/volumes/chroma/* +docker/nginx/conf.d/default.conf + sdks/python-client/build sdks/python-client/dist sdks/python-client/dify_client.egg-info diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index 0573ab0609..a7939dae11 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -259,7 +259,7 @@ x-shared-env: &shared-api-worker-env services: # API service api: - image: langgenius/dify-api:0.6.10 + image: langgenius/dify-api:0.6.11 restart: always environment: # Use the shared environment variables. @@ -282,7 +282,7 @@ services: # worker service # The Celery worker for processing the queue. worker: - image: langgenius/dify-api:0.6.10 + image: langgenius/dify-api:0.6.11 restart: always environment: # Use the shared environment variables. @@ -301,7 +301,7 @@ services: # Frontend web application. web: - image: langgenius/dify-web:0.6.10 + image: langgenius/dify-web:0.6.11 restart: always environment: CONSOLE_API_URL: ${CONSOLE_API_URL:-}