Update docker-compose.yml

This commit is contained in:
Edwin Jose 2025-09-17 01:30:51 -04:00
parent 8dc737c124
commit 54f36fd9f3

View file

@ -39,10 +39,10 @@ services:
- "5601:5601"
openrag-backend:
image: phact/openrag-backend:${OPENRAG_VERSION:-latest}
#build:
#context: .
#dockerfile: Dockerfile.backend
# image: phact/openrag-backend:${OPENRAG_VERSION:-latest}
build:
context: .
dockerfile: Dockerfile.backend
container_name: openrag-backend
depends_on:
- langflow
@ -77,10 +77,10 @@ services:
openrag-frontend:
image: phact/openrag-frontend:${OPENRAG_VERSION:-latest}
#build:
#context: .
#dockerfile: Dockerfile.frontend
container_name: openrag-frontend
# build:
# context: .
# dockerfile: Dockerfile.frontend
# container_name: openrag-frontend
depends_on:
- openrag-backend
environment:
@ -91,7 +91,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"