| 123456789101112131415161718192021222324252627 |
- version: "3.9"
- services:
- postgres:
- image: postgres:16
- container_name: labor_case_postgres
- environment:
- POSTGRES_USER: postgres
- POSTGRES_PASSWORD: postgres
- POSTGRES_DB: labor_cases
- ports:
- - "5432:5432"
- volumes:
- - postgres_data:/var/lib/postgresql/data
- qdrant:
- image: qdrant/qdrant:v1.11.3
- container_name: labor_case_qdrant
- ports:
- - "6333:6333"
- - "6334:6334"
- volumes:
- - qdrant_data:/qdrant/storage
- volumes:
- postgres_data:
- qdrant_data:
|