16 lines
325 B
Nix
Raw Normal View History

2024-05-27 10:18:40 -04:00
{
virtualisation.oci-containers = {
backend = "docker";
containers.filebrowser = {
image = "hurlenko/filebrowser";
2024-05-27 10:31:31 -04:00
ports = [ "8080:8080" ];
2024-05-27 10:18:40 -04:00
volumes = [
2024-05-27 10:31:31 -04:00
"/ZFS:/data"
"/ZFS/Media/Docker/filebrowser:/config"
2024-05-27 10:18:40 -04:00
];
autoStart = true;
2024-05-27 11:20:29 -04:00
user = "richie:users";
2024-05-27 10:18:40 -04:00
};
};
}