Skip to content

Commit

Permalink
Merge pull request #63 from cloudnautique/main
Browse files Browse the repository at this point in the history
change docker-compose.yml to point to new images.
  • Loading branch information
cloudnautique authored Feb 15, 2024
2 parents d2869f9 + d69f8bc commit 12a5b6a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ services:
context: ./services/backend/text_embedding_api
dockerfile: Dockerfile
container_name: text-embedding-api
image: ghcr.io/acorn-io/rubra/text_embedding_api:${RUBRA_TAG:-main}
image: ghcr.io/rubra-ai/rubra/text_embedding_api:${RUBRA_TAG:-main}
ports:
- '8020:8020'
environment:
Expand All @@ -81,7 +81,7 @@ services:
context: ./services/backend/vector_db_api
dockerfile: Dockerfile
container_name: vector-db-api
image: ghcr.io/acorn-io/rubra/vector_db_api:${RUBRA_TAG:-main}
image: ghcr.io/rubra-ai/rubra/vector_db_api:${RUBRA_TAG:-main}
ports:
- '8010:8010'
environment:
Expand All @@ -95,7 +95,7 @@ services:
build:
context: ./services/backend/task_executor
dockerfile: Dockerfile_task_executor
image: ghcr.io/acorn-io/rubra/task_executor:${RUBRA_TAG:-main}
image: ghcr.io/rubra-ai/rubra/task_executor:${RUBRA_TAG:-main}
container_name: task-executor
environment:
- REDIS_HOST=redis
Expand All @@ -115,7 +115,7 @@ services:
build:
context: ./services/backend/api_server
dockerfile: Dockerfile_backend
image: ghcr.io/acorn-io/rubra/api_server:${RUBRA_TAG:-main}
image: ghcr.io/rubra-ai/rubra/api_server:${RUBRA_TAG:-main}
container_name: api-server
environment:
- REDIS_HOST=redis
Expand All @@ -133,7 +133,7 @@ services:
build:
context: ./services/frontend/ui
dockerfile: Dockerfile
image: ghcr.io/acorn-io/rubra/ui:${RUBRA_TAG:-main}
image: ghcr.io/rubra-ai/rubra/ui:${RUBRA_TAG:-main}
container_name: ui
environment:
- RUBRA_BACKEND_HOST=api-server
Expand Down

0 comments on commit 12a5b6a

Please sign in to comment.