-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (28 loc) · 1.03 KB
/
Copy pathdocker-compose.yml
File metadata and controls
29 lines (28 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Uteke Docker Compose — default: localhost only, no auth
# Images available: ghcr.io/codecoradev/uteke:latest (GHCR) or codecoradev/uteke:latest (Docker Hub)
# For network access, uncomment UTEKE_AUTH_TOKEN below.
services:
uteke:
image: ghcr.io/codecoradev/uteke:latest
container_name: uteke
ports:
- "127.0.0.1:${UTEKE_PORT:-8767}:8767"
volumes:
- uteke-data:/data
environment:
# Auth (optional — set UTEKE_AUTH_TOKEN env var to enable)
# - UTEKE_AUTH_TOKEN
# Vector engine (v0.17.0+): usearch (default) or vecq.
# Both engines ship in the image; switching rebuilds the index from
# SQLite on next start (data is never touched).
- UTEKE_VECTOR_BACKEND=${UTEKE_VECTOR_BACKEND:-usearch}
restart: unless-stopped
healthcheck:
# curl is pre-installed in the uteke Docker image (Dockerfile runtime stage)
test: ["CMD", "curl", "-f", "http://localhost:8767/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
volumes:
uteke-data: