- Fix FalkorDB query API invocations (#214)

- Shift FalkorDB internal web manager to be port 3010 so doesn't clash with
  Grafana.
This commit is contained in:
cybermaggedon 2024-12-19 17:32:05 +00:00 committed by GitHub
parent a4afff59a0
commit 03b6b45725
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 88 additions and 72 deletions

View file

@ -15,7 +15,7 @@ local images = import "values/images.jsonnet";
.with_limits("1.0", "768M")
.with_reservations("0.5", "768M")
.with_port(6379, 6379, "api")
.with_port(3000, 3000, "ui")
.with_port(3010, 3000, "ui")
.with_volume_mount(vol, "/data");
local containerSet = engine.containers(
@ -25,7 +25,7 @@ local images = import "values/images.jsonnet";
local service =
engine.service(containerSet)
.with_port(6379, 6379, "api")
.with_port(3000, 3000, "ui");
.with_port(3010, 3010, "ui");
engine.resources([
vol,

View file

@ -13,5 +13,5 @@ local version = import "version.jsonnet";
qdrant: "docker.io/qdrant/qdrant:v1.11.1",
memgraph_mage: "docker.io/memgraph/memgraph-mage:1.22-memgraph-2.22",
memgraph_lab: "docker.io/memgraph/lab:2.19.1",
falkordb: "falkordb/falkordb:latest"
falkordb: "docker.io/falkordb/falkordb:latest"
}