update to docker

This commit is contained in:
Edwin Jose 2025-09-18 15:22:52 -04:00
parent a4122d405d
commit 79b058965f
2 changed files with 13 additions and 7 deletions

View file

@ -7,7 +7,8 @@ ENV RUSTFLAGS="--cfg reqwest_unstable"
# Accept build arguments for git repository and branch
ARG GIT_REPO=https://github.com/langflow-ai/langflow.git
ARG GIT_BRANCH=load_flows_autologin_false
# ARG GIT_BRANCH=load_flows_autologin_false
ARG GIT_BRANCH=docker-features-test
WORKDIR /app

View file

@ -39,8 +39,10 @@ services:
- "5601:5601"
openrag-backend:
image: phact/openrag-backend:${OPENRAG_VERSION:-latest}
#build:
# image: phact/openrag-backend:${OPENRAG_VERSION:-latest}
build:
context: .
dockerfile: Dockerfile.backend
#context: .
#dockerfile: Dockerfile.backend
container_name: openrag-backend
@ -77,9 +79,9 @@ services:
openrag-frontend:
image: phact/openrag-frontend:${OPENRAG_VERSION:-latest}
#build:
#context: .
#dockerfile: Dockerfile.frontend
# build:
# context: .
# dockerfile: Dockerfile.frontend
container_name: openrag-frontend
depends_on:
- openrag-backend
@ -91,7 +93,10 @@ services:
langflow:
volumes:
- ./flows:/app/flows:Z
image: phact/langflow:${LANGFLOW_VERSION:-responses}
# image: phact/langflow:${LANGFLOW_VERSION:-responses}
build:
context: .
dockerfile: Dockerfile.langflow
container_name: langflow
ports:
- "7860:7860"