mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-05 03:12:10 +02:00
- 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:
parent
a4afff59a0
commit
03b6b45725
4 changed files with 88 additions and 72 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue