This commit is contained in:
Yan Lin 2025-11-22 12:53:32 +01:00
parent f4ac044742
commit 57e64ccbaf
4 changed files with 0 additions and 83 deletions

View file

@ -178,35 +178,5 @@ in
autoStart = true;
};
# Navidrome music server
navidrome = {
image = "docker.io/deluan/navidrome:latest";
volumes = [
"/var/lib/containers/config/navidrome:/data"
"/mnt/storage/Media/music:/music:ro"
];
environment = {
PUID = commonUID;
PGID = commonGID;
TZ = systemTZ;
ND_MUSICFOLDER = "/music";
ND_DATAFOLDER = "/data";
ND_LOGLEVEL = "info";
ND_SCANNER_SCHEDULE = "@every 6h";
};
ports = [
"5005:4533"
];
extraOptions = [
"--network=podman"
];
autoStart = true;
};
};
}