Get BYKT running in minutes with Docker. No complex setup required.
# LLM for chat and reasoning
ollama pull qwen2.5:7b
# Embedding model for semantic search and classification
ollama pull nomic-embed-text-v2-moe:latest
# Download and install
curl -sSL https://raw.githubusercontent.com/dx111ge/bykt/main/install.sh | bash
# Navigate to directory and start
cd bykt
docker compose -f docker-compose.prod.yml up -d
That's it!
The script downloads config files, generates secure secrets, and you're ready to go.
admin
admin
Tip
Use 127.0.0.1 instead of localhost to avoid IPv6 connection issues.
Retry the command, or pull images separately:
docker pull dx111ge/bykt-backend:latest
docker pull dx111ge/bykt-frontend:latest
ollama serve.env and set OLLAMA_BASE_URL=http://YOUR_HOST_IP:11434Stop BYKT:
docker compose -f docker-compose.prod.yml down
Reset all data:
docker compose -f docker-compose.prod.yml down -v