docker-compose-yml hinzugefügt
All checks were successful
Deploy mindnet to llm-node / deploy (push) Successful in 3s
All checks were successful
Deploy mindnet to llm-node / deploy (push) Successful in 3s
This commit is contained in:
parent
e3603dc2a7
commit
143d11acaa
13
docker-compose-yml
Normal file
13
docker-compose-yml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
version: "3.9"
|
||||||
|
services:
|
||||||
|
embed:
|
||||||
|
image: python:3.11-slim
|
||||||
|
container_name: mindnet-embed
|
||||||
|
command: bash -lc "pip install --no-cache-dir fastapi==0.111.0 uvicorn==0.30.1 sentence-transformers==3.0.1 && uvicorn embed_server:app --host 0.0.0.0 --port 8990"
|
||||||
|
ports:
|
||||||
|
- "8990:8990"
|
||||||
|
working_dir: /srv
|
||||||
|
volumes:
|
||||||
|
- ./:/srv
|
||||||
|
environment:
|
||||||
|
- TRANSFORMERS_CACHE=/srv/.hf_cache
|
||||||
Loading…
Reference in New Issue
Block a user