Update README and installation guide to reflect Dockerfile paths and add source build instructions

This commit is contained in:
2025-09-29 21:18:13 +02:00
parent e54cfd006d
commit 25d3d70707
2 changed files with 21 additions and 8 deletions

View File

@@ -104,10 +104,13 @@ cd llamactl
mkdir -p data/llamacpp data/vllm models
# Build and start llamactl with llama.cpp CUDA backend
docker-compose up llamactl-llamacpp -d
docker-compose -f docker/docker-compose.yml up llamactl-llamacpp -d
# Build and start llamactl with vLLM CUDA backend
docker-compose up llamactl-vllm -d
docker-compose -f docker/docker-compose.yml up llamactl-vllm -d
# Build from source using multi-stage build
docker build -f docker/Dockerfile.source -t llamactl:source .
```
**Features:** CUDA support, automatic latest release installation, no backend dependencies.