Files
fil/docs/snippets/docker/api_server_basic.md

8 lines
198 B
Markdown
Raw Normal View History

2026-06-01 23:40:55 +02:00
```bash title="Bash"
# Start API server (default mode)
docker run -p 8000:8000 ghcr.io/kreuzberg-dev/kreuzberg:latest
# Test the API
curl -F "files=@document.pdf" http://localhost:8000/extract
```