Skip to content
Snippets Groups Projects
Commit b945be8d authored by Dnouv's avatar Dnouv
Browse files

add rocketchat as default

parent 1f527218
No related branches found
Tags v1.3.0
No related merge requests found
...@@ -14,7 +14,7 @@ MODE=local ...@@ -14,7 +14,7 @@ MODE=local
# 3. Mode “server” refers to the large server use case which may handle many concurrent request and want to use GPU memory as much as possible. # 3. Mode “server” refers to the large server use case which may handle many concurrent request and want to use GPU memory as much as possible.
# In this mode, we will automatically infer the largest possible max batch size and max total sequence length. # In this mode, we will automatically infer the largest possible max batch size and max total sequence length.
RUBRA_ORG=rubra-ai RUBRA_ORG=rocketchat
# If you want to use the pre-built image from Rubra AI, you can set the value of RUBRA_ORG to “rubra-ai”. # If you want to use the pre-built image from Rubra AI, you can set the value of RUBRA_ORG to “rubra-ai”.
PLATFORM_TAG=cuda125 PLATFORM_TAG=cuda125
......
...@@ -71,7 +71,8 @@ cd Rocket.Chat.AI.Preview ...@@ -71,7 +71,8 @@ cd Rocket.Chat.AI.Preview
3. Start rubra 3. Start rubra
> Note: You can add an environment variable `RUBRA_ORG=rubra-ai` as `RUBRA_ORG=rocketchat` to pull the deployment optimized images from the Rocket.Chat Docker registry. > Note: Images provided under `rocketchat` are optimized specifically for deployment compared to standard `rubra-ai` images. Users seeking general solutions may also consider using `rubra-ai` images as an alternative.
> To do this, you can add the environment variable `RUBRA_ORG=rubra-ai` in the `.env` file. Or pass it as an argument in the `docker-compose` command. e.g., `RUBRA_ORG=rubra-ai docker-compose -f docker-compose.yaml --profile rubra up -d`
```bash ```bash
docker-compose -f docker-compose.yaml --profile rubra up -d docker-compose -f docker-compose.yaml --profile rubra up -d
......
...@@ -93,7 +93,7 @@ services: ...@@ -93,7 +93,7 @@ services:
text-embedding-api: text-embedding-api:
container_name: text-embedding-api container_name: text-embedding-api
image: ghcr.io/${RUBRA_ORG:-rubra-ai}/rubra/text_embedding_api:${RUBRA_TAG:-main} image: ghcr.io/${RUBRA_ORG:-rocketchat}/rubra/text_embedding_api:${RUBRA_TAG:-main}
profiles: profiles:
- full - full
- rubra - rubra
...@@ -112,7 +112,7 @@ services: ...@@ -112,7 +112,7 @@ services:
vector-db-api: vector-db-api:
container_name: vector-db-api container_name: vector-db-api
image: ghcr.io/${RUBRA_ORG:-rubra-ai}/rubra/vector_db_api:${RUBRA_TAG:-main} image: ghcr.io/${RUBRA_ORG:-rocketchat}/rubra/vector_db_api:${RUBRA_TAG:-main}
profiles: profiles:
- full - full
- rubra - rubra
...@@ -131,7 +131,7 @@ services: ...@@ -131,7 +131,7 @@ services:
restart: always restart: always
task-executor: task-executor:
image: ghcr.io/${RUBRA_ORG:-rubra-ai}/rubra/task_executor:${RUBRA_TAG:-main} image: ghcr.io/${RUBRA_ORG:-rocketchat}/rubra/task_executor:${RUBRA_TAG:-main}
container_name: task-executor container_name: task-executor
profiles: profiles:
- full - full
...@@ -158,7 +158,7 @@ services: ...@@ -158,7 +158,7 @@ services:
restart: always restart: always
api-server: api-server:
image: ghcr.io/${RUBRA_ORG:-rubra-ai}/rubra/api_server:${RUBRA_TAG:-main} image: ghcr.io/${RUBRA_ORG:-rocketchat}/rubra/api_server:${RUBRA_TAG:-main}
container_name: api-server container_name: api-server
profiles: profiles:
- full - full
...@@ -181,7 +181,7 @@ services: ...@@ -181,7 +181,7 @@ services:
restart: always restart: always
ui: ui:
image: ghcr.io/${RUBRA_ORG:-rubra-ai}/rubra/ui:${RUBRA_TAG:-main} image: ghcr.io/${RUBRA_ORG:-rocketchat}/rubra/ui:${RUBRA_TAG:-main}
container_name: ui container_name: ui
profiles: profiles:
- full - full
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment