modified: docker compose

This commit is contained in:
nsxshota 2023-12-08 00:18:04 +09:00
commit e465d254b0
2 changed files with 3 additions and 3 deletions

View file

@ -1,3 +1,3 @@
export LANGFLOW_DATABASE_URL="mysql+pymysql://${username}:${password}@${host}:3306/${dbname}"
echo $LANGFLOW_DATABASE_URL
# echo $LANGFLOW_DATABASE_URL
uvicorn --factory src.backend.langflow.main:create_app --host 0.0.0.0 --port 7860 --reload --log-level debug

View file

@ -6,7 +6,7 @@ services:
backend:
build:
context: ./
dockerfile: ./cdk.Dockerfile
dockerfile: ./dev.Dockerfile
env_file:
- .env
ports:
@ -19,7 +19,7 @@ services:
frontend:
build:
context: ./src/frontend
dockerfile: ./cdk.Dockerfile
dockerfile: ./dev.Dockerfile
args:
- BACKEND_URL=http://backend:7860
environment: