added RAG, Multiuser, TG bot
This commit is contained in:
+39
-22
@@ -1,22 +1,39 @@
|
||||
services:
|
||||
backend:
|
||||
build: ./backend
|
||||
ports:
|
||||
- "${BACKEND_PORT:-8080}:${BACKEND_INTERNAL_PORT:-8080}"
|
||||
env_file: .env
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
extra_hosts:
|
||||
- "host.docker.internal:host-gateway"
|
||||
restart: unless-stopped
|
||||
|
||||
frontend:
|
||||
build:
|
||||
context: ./frontend
|
||||
args:
|
||||
VITE_API_URL: ""
|
||||
ports:
|
||||
- "${FRONTEND_PORT:-3080}:${FRONTEND_INTERNAL_PORT:-80}"
|
||||
depends_on:
|
||||
- backend
|
||||
restart: unless-stopped
|
||||
services:
|
||||
qdrant:
|
||||
image: qdrant/qdrant:v1.12.5
|
||||
ports:
|
||||
- "${QDRANT_PORT:-6333}:6333"
|
||||
- "${QDRANT_GRPC_PORT:-6334}:6334"
|
||||
volumes:
|
||||
- qdrant_data:/qdrant/storage
|
||||
restart: unless-stopped
|
||||
|
||||
backend:
|
||||
build: ./backend
|
||||
ports:
|
||||
- "${BACKEND_PORT:-8080}:${BACKEND_INTERNAL_PORT:-8080}"
|
||||
env_file: .env
|
||||
environment:
|
||||
QDRANT_URL: ${QDRANT_URL:-http://qdrant:6333}
|
||||
depends_on:
|
||||
- qdrant
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
extra_hosts:
|
||||
- "host.docker.internal:host-gateway"
|
||||
restart: unless-stopped
|
||||
|
||||
frontend:
|
||||
build:
|
||||
context: ./frontend
|
||||
args:
|
||||
VITE_API_URL: ""
|
||||
VITE_API_TOKEN: ${VITE_API_TOKEN:-}
|
||||
ports:
|
||||
- "${FRONTEND_PORT:-3080}:${FRONTEND_INTERNAL_PORT:-80}"
|
||||
depends_on:
|
||||
- backend
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
qdrant_data:
|
||||
|
||||
Reference in New Issue
Block a user