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

13 lines
270 B
Nix
Raw Normal View History

2024-05-27 15:33:24 -04:00
{
virtualisation.oci-containers.containers.filebrowser = {
image = "hurlenko/filebrowser";
ports = [ "8080:8080" ];
volumes = [
"/ZFS:/data"
2024-06-19 17:54:17 -04:00
"/ZFS/media/Docker/filebrowser:/config"
2024-05-27 15:33:24 -04:00
];
autoStart = true;
user = "nobody:users";
};
}