Files
opencode/docker-compose.yml
T
2026-01-20 13:15:51 +01:00

29 lines
701 B
YAML

version: '3.8'
services:
qdrant:
image: qdrant/qdrant:latest
container_name: agent-core-qdrant
restart: always
ports:
- "6333:6333"
volumes:
- ${HOME}/.local/share/agent-core/qdrant:/qdrant/storage
environment:
- QDRANT__SERVICE__GRPC_PORT=6334
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:6333/healthz"]
interval: 30s
timeout: 10s
retries: 3
# Redis is optional but prepared here if needed for caching later
# redis:
# image: redis:alpine
# container_name: agent-core-redis
# restart: always
# ports:
# - "6379:6379"
# volumes:
# - ${HOME}/.local/share/agent-core/redis:/data