446f865cdf
- Implemented KnowledgeHandler for managing knowledge groups and items, including listing, creating, updating, and deleting operations. - Added database migration scripts to create necessary tables for knowledge management, including knowledge_groups, knowledge_items, knowledge_parse_tasks, and knowledge_chunks_meta. - Introduced prompt_rule_knowledge_groups table to associate prompt rules with knowledge groups.
46 lines
903 B
YAML
46 lines
903 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16
|
|
container_name: geo-postgres
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
POSTGRES_DB: geo
|
|
POSTGRES_USER: geo
|
|
POSTGRES_PASSWORD: geo_dev
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
|
|
redis:
|
|
image: redis:7-alpine
|
|
container_name: geo-redis
|
|
ports:
|
|
- "6379:6379"
|
|
|
|
qdrant:
|
|
image: qdrant/qdrant:v1.13.2
|
|
container_name: geo-qdrant
|
|
ports:
|
|
- "6333:6333"
|
|
- "6334:6334"
|
|
volumes:
|
|
- qdrant_data:/qdrant/storage
|
|
|
|
minio:
|
|
image: minio/minio:RELEASE.2025-03-12T18-04-18Z
|
|
container_name: geo-minio
|
|
command: server /data --console-address ":9001"
|
|
environment:
|
|
MINIO_ROOT_USER: minioadmin
|
|
MINIO_ROOT_PASSWORD: minioadmin
|
|
ports:
|
|
- "9000:9000"
|
|
- "9001:9001"
|
|
volumes:
|
|
- minio_data:/data
|
|
|
|
volumes:
|
|
pgdata:
|
|
qdrant_data:
|
|
minio_data:
|