Spaces:
Sleeping
Sleeping
File size: 1,083 Bytes
61f8152 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | version: '3.8'
services:
# ββ COGNITIVE VAULT (QDRANT) ββββββββββββββββββββββββββββββββββββββββββββββ
qdrant:
image: qdrant/qdrant:latest
container_name: deci_vault
restart: always
ports:
- "6333:6333"
- "6334:6334"
environment:
- QDRANT__TELEMETRY_DISABLED=true # Silencia errores de data.json
volumes:
- ./qdrant_storage:/qdrant/storage
networks:
- deci_network
# ββ DECI CORE (FASTAPI) ββββββββββββββββββββββββββββββββββββββββββββββββββ
deci_api:
build: .
container_name: deci_core
restart: always
ports:
- "8000:8000"
environment:
- QDRANT_HOST=qdrant
- QDRANT_PORT=6333
- LOG_LEVEL=warning
- TZ=America/New_York
depends_on:
- qdrant
networks:
- deci_network
networks:
deci_network:
driver: bridge |