mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-23 10:45:33 -04:00
29 lines
701 B
YAML
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
|