Self-hosted local LLM service with persistent multi-chat history
1.6K
Self-hosted local LLM service with:
docker run -p 8000:8000 irfanuruchi/local-llm-service:latest
Open:
http://localhost:8000
docker run \
-v $(pwd)/data:/data \
-p 8000:8000 \
irfanuruchi/local-llm-service:latest
docker run \
-v $(pwd)/models:/models \
-e MODEL_PATH=/models/custom.gguf \
-p 8000:8000 \
irfanuruchi/local-llm-service:latest
| Variable | Default | Description |
|---|---|---|
| MODEL_PATH | /models/model.gguf | Path to GGUF model |
| MODEL_NAME | local-llm | Model display name |
| N_GPU_LAYERS | 35 | GPU layers for inference |
| N_CTX | 4096 | Context window size |
| CHAT_DB_PATH | /data/chat_history.db | SQLite DB location |
Content type
Image
Digest
sha256:15563f622…
Size
2.1 GB
Last updated
7 months ago
docker pull irfanuruchi/local-llm-service