nix-dotfiles/systems/jeeves/docker/filebrowser.nix

13 lines
287 B
Nix
Raw Normal View History

2024-05-27 15:33:24 -04:00
{
virtualisation.oci-containers.containers.filebrowser = {
image = "hurlenko/filebrowser";
2024-06-22 12:28:09 -04:00
extraOptions = [ "--network=web" ];
2024-05-27 15:33:24 -04:00
volumes = [
"/ZFS:/data"
2024-06-20 22:43:10 -04:00
"/zfs/media/docker/configs/filebrowser:/config"
2024-05-27 15:33:24 -04:00
];
autoStart = true;
2024-06-22 13:07:20 -04:00
user = "1000:users";
2024-05-27 15:33:24 -04:00
};
}