mirror of
https://github.com/langgenius/dify.git
synced 2026-05-04 17:38:04 +08:00
Merge remote-tracking branch 'origin/main' into feat/trigger
This commit is contained in:
@ -24,6 +24,13 @@ services:
|
||||
volumes:
|
||||
# Mount the storage directory to the container, for storing user files.
|
||||
- ./volumes/app/storage:/app/api/storage
|
||||
# TODO: Remove this entrypoint override when weaviate-client 4.17.0 is included in the next Dify release
|
||||
entrypoint:
|
||||
- /bin/bash
|
||||
- -c
|
||||
- |
|
||||
uv pip install --system weaviate-client==4.17.0
|
||||
exec /bin/bash /app/api/docker/entrypoint.sh
|
||||
networks:
|
||||
- ssrf_proxy_network
|
||||
- default
|
||||
@ -51,6 +58,13 @@ services:
|
||||
volumes:
|
||||
# Mount the storage directory to the container, for storing user files.
|
||||
- ./volumes/app/storage:/app/api/storage
|
||||
# TODO: Remove this entrypoint override when weaviate-client 4.17.0 is included in the next Dify release
|
||||
entrypoint:
|
||||
- /bin/bash
|
||||
- -c
|
||||
- |
|
||||
uv pip install --system weaviate-client==4.17.0
|
||||
exec /bin/bash /app/api/docker/entrypoint.sh
|
||||
networks:
|
||||
- ssrf_proxy_network
|
||||
- default
|
||||
@ -331,7 +345,6 @@ services:
|
||||
weaviate:
|
||||
image: semitechnologies/weaviate:1.27.0
|
||||
profiles:
|
||||
- ""
|
||||
- weaviate
|
||||
restart: always
|
||||
volumes:
|
||||
|
||||
@ -1,9 +0,0 @@
|
||||
services:
|
||||
api:
|
||||
volumes:
|
||||
- ../api/core/rag/datasource/vdb/weaviate/weaviate_vector.py:/app/api/core/rag/datasource/vdb/weaviate/weaviate_vector.py:ro
|
||||
command: >
|
||||
sh -c "
|
||||
pip install --no-cache-dir 'weaviate>=4.0.0' &&
|
||||
/bin/bash /entrypoint.sh
|
||||
"
|
||||
@ -636,6 +636,13 @@ services:
|
||||
volumes:
|
||||
# Mount the storage directory to the container, for storing user files.
|
||||
- ./volumes/app/storage:/app/api/storage
|
||||
# TODO: Remove this entrypoint override when weaviate-client 4.17.0 is included in the next Dify release
|
||||
entrypoint:
|
||||
- /bin/bash
|
||||
- -c
|
||||
- |
|
||||
uv pip install --system weaviate-client==4.17.0
|
||||
exec /bin/bash /app/api/docker/entrypoint.sh
|
||||
networks:
|
||||
- ssrf_proxy_network
|
||||
- default
|
||||
@ -663,6 +670,13 @@ services:
|
||||
volumes:
|
||||
# Mount the storage directory to the container, for storing user files.
|
||||
- ./volumes/app/storage:/app/api/storage
|
||||
# TODO: Remove this entrypoint override when weaviate-client 4.17.0 is included in the next Dify release
|
||||
entrypoint:
|
||||
- /bin/bash
|
||||
- -c
|
||||
- |
|
||||
uv pip install --system weaviate-client==4.17.0
|
||||
exec /bin/bash /app/api/docker/entrypoint.sh
|
||||
networks:
|
||||
- ssrf_proxy_network
|
||||
- default
|
||||
@ -943,7 +957,6 @@ services:
|
||||
weaviate:
|
||||
image: semitechnologies/weaviate:1.27.0
|
||||
profiles:
|
||||
- ""
|
||||
- weaviate
|
||||
restart: always
|
||||
volumes:
|
||||
|
||||
Reference in New Issue
Block a user