mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-26 00:46:22 +02:00
Fix Docker Compose relative directory problem (#60)
- Fix Docker Compose relative directory problem - Added CONFIGDIR environment variable for docker compose - Correct Pulsar URL defaults for graph utils to be localhost again
This commit is contained in:
parent
0ae6feddb0
commit
054ea6c76a
20 changed files with 81 additions and 75 deletions
|
|
@ -10,7 +10,7 @@ local images = import "values/images.jsonnet";
|
|||
local vol = engine.volume("prometheus-data").with_size("20G");
|
||||
|
||||
local cfgVol = engine.configVolume(
|
||||
"prometheus-cfg", "./prometheus",
|
||||
"prometheus-cfg", "prometheus",
|
||||
{
|
||||
"prometheus.yml": importstr "prometheus/prometheus.yml",
|
||||
}
|
||||
|
|
@ -50,7 +50,7 @@ local images = import "values/images.jsonnet";
|
|||
local vol = engine.volume("grafana-storage").with_size("20G");
|
||||
|
||||
local provDashVol = engine.configVolume(
|
||||
"prov-dash", "./grafana/provisioning/",
|
||||
"prov-dash", "grafana/provisioning/",
|
||||
{
|
||||
"dashboard.yml":
|
||||
importstr "grafana/provisioning/dashboard.yml",
|
||||
|
|
@ -59,7 +59,7 @@ local images = import "values/images.jsonnet";
|
|||
);
|
||||
|
||||
local provDataVol = engine.configVolume(
|
||||
"prov-data", "./grafana/provisioning/",
|
||||
"prov-data", "grafana/provisioning/",
|
||||
{
|
||||
"datasource.yml":
|
||||
importstr "grafana/provisioning/datasource.yml",
|
||||
|
|
@ -68,7 +68,7 @@ local images = import "values/images.jsonnet";
|
|||
);
|
||||
|
||||
local dashVol = engine.configVolume(
|
||||
"dashboards", "./grafana/dashboards/",
|
||||
"dashboards", "grafana/dashboards/",
|
||||
{
|
||||
"dashboard.json":
|
||||
importstr "grafana/dashboards/dashboard.json",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue