Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
Edwin Jose
bc1c781ba4
Merge branch 'main' into fix-aliases-issue-windows 2025-12-19 12:15:20 -05:00
Edwin Jose
0a978c69f5 Prefix Docker images with docker.io in compose files
Updated all Docker image references in docker-compose.yml, docker-compose-cpu.yml, and docker-compose.gpu.yml to explicitly use the docker.io registry prefix. This change ensures consistent image resolution and avoids ambiguity in environments where multiple registries may be configured.
2025-12-18 19:40:13 -05:00
3 changed files with 11 additions and 10 deletions

View file

@ -1,6 +1,6 @@
services:
opensearch:
image: langflowai/openrag-opensearch:${OPENRAG_VERSION:-latest}
image: docker.io/langflowai/openrag-opensearch:${OPENRAG_VERSION:-latest}
#build:
# context: .
# dockerfile: Dockerfile
@ -32,7 +32,7 @@ services:
- ${OPENSEARCH_DATA_PATH:-./opensearch-data}:/usr/share/opensearch/data:Z
dashboards:
image: opensearchproject/opensearch-dashboards:3.0.0
image: docker.io/opensearchproject/opensearch-dashboards:3.0.0
container_name: osdash
depends_on:
- opensearch
@ -44,7 +44,7 @@ services:
- "5601:5601"
openrag-backend:
image: langflowai/openrag-backend:${OPENRAG_VERSION:-latest}
image: docker.io/langflowai/openrag-backend:${OPENRAG_VERSION:-latest}
# build:
# context: .
# dockerfile: Dockerfile.backend
@ -87,7 +87,7 @@ services:
- ./config:/app/config:Z
openrag-frontend:
image: langflowai/openrag-frontend:${OPENRAG_VERSION:-latest}
image: docker.io/langflowai/openrag-frontend:${OPENRAG_VERSION:-latest}
# build:
# context: .
# dockerfile: Dockerfile.frontend
@ -102,7 +102,7 @@ services:
langflow:
volumes:
- ./flows:/app/flows:U,z
image: langflowai/openrag-langflow:${LANGFLOW_VERSION:-latest}
image: docker.io/langflowai/openrag-langflow:${LANGFLOW_VERSION:-latest}
# build:
# context: .
# dockerfile: Dockerfile.langflow

View file

@ -1,5 +1,6 @@
services:
openrag-backend:
image: docker.io/langflowai/openrag-backend:${OPENRAG_VERSION:-latest}
environment:
- NVIDIA_DRIVER_CAPABILITIES=compute,utility
- NVIDIA_VISIBLE_DEVICES=all

View file

@ -1,6 +1,6 @@
services:
opensearch:
image: langflowai/openrag-opensearch:${OPENRAG_VERSION:-latest}
image: docker.io/langflowai/openrag-opensearch:${OPENRAG_VERSION:-latest}
#build:
#context: .
#dockerfile: Dockerfile
@ -32,7 +32,7 @@ services:
- ${OPENSEARCH_DATA_PATH:-./opensearch-data}:/usr/share/opensearch/data:Z
dashboards:
image: opensearchproject/opensearch-dashboards:3.0.0
image: docker.io/opensearchproject/opensearch-dashboards:3.0.0
container_name: osdash
depends_on:
- opensearch
@ -44,7 +44,7 @@ services:
- "5601:5601"
openrag-backend:
image: langflowai/openrag-backend:${OPENRAG_VERSION:-latest}
image: docker.io/langflowai/openrag-backend:${OPENRAG_VERSION:-latest}
build:
context: .
dockerfile: Dockerfile.backend
@ -87,7 +87,7 @@ services:
- ${OPENRAG_DATA_PATH:-./data}:/app/data:Z
openrag-frontend:
image: langflowai/openrag-frontend:${OPENRAG_VERSION:-latest}
image: docker.io/langflowai/openrag-frontend:${OPENRAG_VERSION:-latest}
build:
context: .
dockerfile: Dockerfile.frontend
@ -102,7 +102,7 @@ services:
langflow:
volumes:
- ${OPENRAG_FLOWS_PATH:-./flows}:/app/flows:U,z
image: langflowai/openrag-langflow:${OPENRAG_VERSION:-latest}
image: docker.io/langflowai/openrag-langflow:${OPENRAG_VERSION:-latest}
build:
context: .
dockerfile: Dockerfile.langflow