testing filebrowser

This commit is contained in:
Richie Cahill 2024-05-27 10:18:40 -04:00
parent 276775108a
commit ab04058e1b
2 changed files with 19 additions and 0 deletions

View File

@ -32,12 +32,15 @@
"esbenp", "esbenp",
"extest", "extest",
"fenix", "fenix",
"filebrowser",
"fileroller", "fileroller",
"Filesystems", "Filesystems",
"foxundermoon", "foxundermoon",
"gamescope", "gamescope",
"gparted",
"hexeditor", "hexeditor",
"HRDN", "HRDN",
"hurlenko",
"hwloc", "hwloc",
"hyprland", "hyprland",
"hyprwm", "hyprwm",

16
systems/jeeves/docker.nix Normal file
View File

@ -0,0 +1,16 @@
{
virtualisation.oci-containers = {
backend = "docker";
containers.filebrowser = {
image = "hurlenko/filebrowser";
ports = [ "443:8080" ];
volumes = [
"/DATA_DIR:/ZFS"
"/CONFIG_DIR:/ZFS/Media/Docker/filebrowser"
];
environment = [ "FB_BASEURL=/filebrowser" ];
autoStart = true;
user = "richie:users";
};
};
}