2cab53bc94
Test Vector Database Adaptors / Test MCP Vector DB Tools (push) Has been cancelled
Tests / Code Quality (Ruff & Mypy) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (macos-latest, 3.12) (push) Has been cancelled
Tests / Tests (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers CLI - Convert documentation to AI skills dockerfile:Dockerfile name:skill-seekers]) (push) Has been cancelled
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers MCP Server - 25 tools for AI assistants dockerfile:Dockerfile.mcp name:skill-seekers-mcp]) (push) Has been cancelled
Docker Publish / Test Docker Images (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.10) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.11) (push) Has been cancelled
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.12) (push) Has been cancelled
Tests / Serial / Integration / E2E Tests (push) Has been cancelled
Tests / MCP Server Tests (push) Has been cancelled
Test Vector Database Adaptors / Test chroma Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test faiss Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test qdrant Adaptor (push) Has been cancelled
Test Vector Database Adaptors / Test weaviate Adaptor (push) Has been cancelled
67 lines
1.7 KiB
YAML
67 lines
1.7 KiB
YAML
version: '3.8'
|
|
|
|
services:
|
|
# Weaviate vector database
|
|
weaviate:
|
|
image: semitechnologies/weaviate:latest
|
|
container_name: skill_seekers_test_weaviate
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
|
|
PERSISTENCE_DATA_PATH: '/var/lib/weaviate'
|
|
QUERY_DEFAULTS_LIMIT: 20
|
|
DEFAULT_VECTORIZER_MODULE: 'none'
|
|
CLUSTER_HOSTNAME: 'node1'
|
|
restart: on-failure:3
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8080/v1/.well-known/ready"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 10
|
|
start_period: 10s
|
|
|
|
# Qdrant vector database
|
|
qdrant:
|
|
image: qdrant/qdrant:latest
|
|
container_name: skill_seekers_test_qdrant
|
|
ports:
|
|
- "6333:6333"
|
|
- "6334:6334"
|
|
environment:
|
|
QDRANT__SERVICE__GRPC_PORT: 6334
|
|
volumes:
|
|
- qdrant_data:/qdrant/storage
|
|
restart: on-failure:3
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:6333/"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 10
|
|
start_period: 10s
|
|
|
|
# ChromaDB vector database
|
|
chroma:
|
|
image: chromadb/chroma:latest
|
|
container_name: skill_seekers_test_chroma
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
IS_PERSISTENT: TRUE
|
|
ANONYMIZED_TELEMETRY: FALSE
|
|
volumes:
|
|
- chroma_data:/chroma/chroma
|
|
restart: on-failure:3
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8000/api/v1/heartbeat"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 10
|
|
start_period: 10s
|
|
|
|
volumes:
|
|
qdrant_data:
|
|
driver: local
|
|
chroma_data:
|
|
driver: local
|