From 90e0c66a3b532624dc8d226f7073490145fdb874 Mon Sep 17 00:00:00 2001 From: Lucy Hochkamp Date: Sun, 15 Sep 2024 16:18:28 +0200 Subject: [PATCH] db access for nodered --- hosts/ds9/containers.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/ds9/containers.nix b/hosts/ds9/containers.nix index 809f5c71..63ef78fe 100644 --- a/hosts/ds9/containers.nix +++ b/hosts/ds9/containers.nix @@ -157,7 +157,7 @@ in virtualisation.oci-containers.containers.grafana = { image = "grafana/grafana-oss:latest"; - extraOptions = [ "--network=podman" ]; + extraOptions = [ "--network=podman" "--network=db-net" ]; volumes = [ "grafana-data:/var/lib/grafana" ]; @@ -168,7 +168,7 @@ in }; virtualisation.oci-containers.containers.node-red = { image = "nodered/node-red:latest"; - extraOptions = [ "--network=podman" ]; + extraOptions = [ "--network=podman" "--network=db-net" ]; volumes = [ "nodered-data:/data" ];