mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2025-12-22 23:11:57 +00:00
Made grafana container module name more descriptive
This commit is contained in:
21
home-manager/homeserver/containers/monitoring.nix
Normal file
21
home-manager/homeserver/containers/monitoring.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
unstablePkgs,
|
||||
...
|
||||
}: {
|
||||
services.podman.containers = {
|
||||
grafana = {
|
||||
image = "docker.io/grafana/grafana:latest";
|
||||
autoUpdate = "registry";
|
||||
ports = ["3000:3000"];
|
||||
user = "1000:1000";
|
||||
volumes = [
|
||||
"/home/cianh/grafana:/var/lib/grafana:Z"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user