update to docker
This commit is contained in:
parent
a4122d405d
commit
79b058965f
2 changed files with 13 additions and 7 deletions
|
|
@ -7,7 +7,8 @@ ENV RUSTFLAGS="--cfg reqwest_unstable"
|
||||||
|
|
||||||
# Accept build arguments for git repository and branch
|
# Accept build arguments for git repository and branch
|
||||||
ARG GIT_REPO=https://github.com/langflow-ai/langflow.git
|
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
|
WORKDIR /app
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,8 +39,10 @@ services:
|
||||||
- "5601:5601"
|
- "5601:5601"
|
||||||
|
|
||||||
openrag-backend:
|
openrag-backend:
|
||||||
image: phact/openrag-backend:${OPENRAG_VERSION:-latest}
|
# image: phact/openrag-backend:${OPENRAG_VERSION:-latest}
|
||||||
#build:
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile.backend
|
||||||
#context: .
|
#context: .
|
||||||
#dockerfile: Dockerfile.backend
|
#dockerfile: Dockerfile.backend
|
||||||
container_name: openrag-backend
|
container_name: openrag-backend
|
||||||
|
|
@ -77,9 +79,9 @@ services:
|
||||||
|
|
||||||
openrag-frontend:
|
openrag-frontend:
|
||||||
image: phact/openrag-frontend:${OPENRAG_VERSION:-latest}
|
image: phact/openrag-frontend:${OPENRAG_VERSION:-latest}
|
||||||
#build:
|
# build:
|
||||||
#context: .
|
# context: .
|
||||||
#dockerfile: Dockerfile.frontend
|
# dockerfile: Dockerfile.frontend
|
||||||
container_name: openrag-frontend
|
container_name: openrag-frontend
|
||||||
depends_on:
|
depends_on:
|
||||||
- openrag-backend
|
- openrag-backend
|
||||||
|
|
@ -91,7 +93,10 @@ services:
|
||||||
langflow:
|
langflow:
|
||||||
volumes:
|
volumes:
|
||||||
- ./flows:/app/flows:Z
|
- ./flows:/app/flows:Z
|
||||||
image: phact/langflow:${LANGFLOW_VERSION:-responses}
|
# image: phact/langflow:${LANGFLOW_VERSION:-responses}
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile.langflow
|
||||||
container_name: langflow
|
container_name: langflow
|
||||||
ports:
|
ports:
|
||||||
- "7860:7860"
|
- "7860:7860"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue