-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (41 loc) · 1.04 KB
/
docker-compose.yml
File metadata and controls
46 lines (41 loc) · 1.04 KB
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
39
40
41
42
43
44
45
46
networks:
app_network:
external: true
name: ${APP_NETWORK_NAME:-denodo-lab-net}
services:
frontend:
ports:
- "${HOST_FRONTEND_PORT:-4999}:4999"
networks:
- app_network
depends_on:
- backend
backend:
ports:
- "${HOST_BACKEND_PORT:-5000}:5000"
env_file:
- .env
environment:
# Denodo credentials
- DENODO_HOST=${DENODO_HOST}
- DENODO_DB=${DENODO_DB}
- DENODO_USER=${DENODO_USER}
- DENODO_PW=${DENODO_PW}
# AI KEY
- GEMINI_API_KEY=${GEMINI_API_KEY}
- AI_MODEL_NAME=${AI_MODEL_NAME}
- OPENAI_API_KEY=${OPENAI_API_KEY}
- AZURE_OPENAI_ENDPOINT=${AZURE_OPENAI_ENDPOINT}
- AGENTIC_MAX_LOOPS=${AGENTIC_MAX_LOOPS}
# BACKEND
- CONTAINER_BACKEND_PORT=${CONTAINER_BACKEND_PORT:-5000}
# Files
- APP_VDB_CONF=/opt/vdb_conf.yaml
user: appuser
volumes:
- ${HOST_PROJECT_PATH}/backend/vdb_conf.yaml:/opt/vdb_conf.yaml
- vqlforge-data:/data
networks:
- app_network
volumes:
vqlforge-data: