setup homarr (dashboard)
This commit is contained in:
parent
b68b7f32fe
commit
f88180895e
24
nixos/viridian/containers/dashboard/default.nix
Normal file
24
nixos/viridian/containers/dashboard/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
virtualisation.oci-containers.containers = {
|
||||
dashboard = {
|
||||
autoStart = true;
|
||||
image = "ghcr.io/ajnart/homarr:latest";
|
||||
ports = [
|
||||
"7575:7575/tcp" # WebUI
|
||||
];
|
||||
volumes = [
|
||||
# Container data
|
||||
"/var/lib/homarr/configs:/app/data/configs:rw"
|
||||
"/var/lib/homarr/icons:/app/public/icons:rw"
|
||||
"/var/lib/homarr/data:/data:rw"
|
||||
# Docker Integration
|
||||
"/var/run/docker.sock:/var/run/docker.sock:ro"
|
||||
];
|
||||
extraOptions = [
|
||||
"--network=host"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue