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",
"extest",
"fenix",
"filebrowser",
"fileroller",
"Filesystems",
"foxundermoon",
"gamescope",
"gparted",
"hexeditor",
"HRDN",
"hurlenko",
"hwloc",
"hyprland",
"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";
};
};
}