Files
luma/docker-compose.yml
2025-09-08 21:46:10 +00:00

48 lines
752 B
YAML

version: '3.8'
services:
frontend:
build: ./frontend
ports:
- "5173:5173"
volumes:
- ./frontend:/app
- /app/node_modules
environment:
- VITE_API_URL=http://localhost:8000
depends_on:
- backend
networks:
- app-network
stdin_open: true
tty: true
backend:
build: ./backend
ports:
- "8000:8000"
volumes:
- ./backend:/app
- /app/.venv
depends_on:
- qdrant
networks:
- app-network
qdrant:
image: qdrant/qdrant:latest
ports:
- "6333:6333"
- "6334:6334"
volumes:
- qdrant_storage:/qdrant/storage
networks:
- app-network
networks:
app-network:
driver: bridge
volumes:
qdrant_storage: