12 lines
265 B
Nix
Raw Permalink Normal View History

2024-11-19 18:59:45 +01:00
{
virtualisation.oci-containers.containers."homarr" = {
image = "ghcr.io/ajnart/homarr:latest";
ports = ["7575:7575"];
volumes = [
2024-11-20 12:37:05 +01:00
"homarr-configs:/app/data/configs"
2024-11-19 18:59:45 +01:00
"homarr-icons:/app/public/icons"
"homarr-data:/data"
];
};
}