Skip to content

Commit c361394

Browse files
authored
fix: update ReasonDB Docker image from ajainvivek to brainfishai org (#46)
Update default container image reference across all deploy configs (AWS/GCP Terraform variables and Pulumi index.ts fallbacks) to use the canonical brainfishai/reasondb:latest image.
1 parent 08d4beb commit c361394

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

deploy/aws/pulumi/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const llmProvider = config.get("llmProvider") ?? "openai";
1515
const llmApiKey = config.requireSecret("llmApiKey");
1616
const llmModel = config.get("llmModel") ?? "";
1717
const llmBaseUrl = config.get("llmBaseUrl") ?? "";
18-
const reasondbImage = config.get("reasondbImage") ?? "ajainvivek/reasondb:latest";
18+
const reasondbImage = config.get("reasondbImage") ?? "brainfishai/reasondb:latest";
1919

2020
// ── AMI lookup — Ubuntu 22.04 LTS ─────────────────────────────────────────────
2121
const ami = aws.ec2.getAmi({

deploy/aws/terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ variable "llm_base_url" {
6666
variable "reasondb_image" {
6767
description = "Docker image to pull and run"
6868
type = string
69-
default = "ajainvivek/reasondb:latest"
69+
default = "brainfishai/reasondb:latest"
7070
}
7171

7272
variable "name_prefix" {

deploy/gcp/pulumi/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const llmProvider = config.get("llmProvider") ?? "openai";
1515
const llmApiKey = config.requireSecret("llmApiKey");
1616
const llmModel = config.get("llmModel") ?? "";
1717
const llmBaseUrl = config.get("llmBaseUrl") ?? "";
18-
const reasondbImage = config.get("reasondbImage") ?? "ajainvivek/reasondb:latest";
18+
const reasondbImage = config.get("reasondbImage") ?? "brainfishai/reasondb:latest";
1919
const zone = gcpConfig.get("zone") ?? "us-central1-a";
2020
const region = gcpConfig.get("region") ?? "us-central1";
2121

deploy/gcp/terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ variable "llm_base_url" {
7171
variable "reasondb_image" {
7272
description = "Docker image to pull and run"
7373
type = string
74-
default = "ajainvivek/reasondb:latest"
74+
default = "brainfishai/reasondb:latest"
7575
}
7676

7777
variable "name_prefix" {

0 commit comments

Comments
 (0)