mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-06 13:22:12 +00:00
Pin pytorch version to 2.0.1 in order to avoid exit code 139 in Docker container (#512)
This commit is contained in:
@@ -25,9 +25,11 @@ services:
|
|||||||
- ./tests/data/embeddings/:/root/.khoj/content/
|
- ./tests/data/embeddings/:/root/.khoj/content/
|
||||||
- ./tests/data/models/:/root/.khoj/search/
|
- ./tests/data/models/:/root/.khoj/search/
|
||||||
- khoj_config:/root/.khoj/
|
- khoj_config:/root/.khoj/
|
||||||
|
- sentence_tranformer_models:/root/.cache/torch/sentence_transformers
|
||||||
# Use 0.0.0.0 to explicitly set the host ip for the service on the container. https://pythonspeed.com/articles/docker-connection-refused/
|
# Use 0.0.0.0 to explicitly set the host ip for the service on the container. https://pythonspeed.com/articles/docker-connection-refused/
|
||||||
command: --host="0.0.0.0" --port=42110 -vv
|
command: --host="0.0.0.0" --port=42110 -vv
|
||||||
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
khoj_config:
|
khoj_config:
|
||||||
|
sentence_tranformer_models:
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ dependencies = [
|
|||||||
"schedule == 1.1.0",
|
"schedule == 1.1.0",
|
||||||
"sentence-transformers == 2.2.2",
|
"sentence-transformers == 2.2.2",
|
||||||
"transformers >= 4.28.0",
|
"transformers >= 4.28.0",
|
||||||
"torch >= 2.0.1",
|
"torch == 2.0.1",
|
||||||
"uvicorn == 0.17.6",
|
"uvicorn == 0.17.6",
|
||||||
"aiohttp == 3.8.5",
|
"aiohttp == 3.8.5",
|
||||||
"langchain >= 0.0.187",
|
"langchain >= 0.0.187",
|
||||||
|
|||||||
Reference in New Issue
Block a user