19 lines
419 B
Nix
19 lines
419 B
Nix
{
|
|
virtualisation.oci-containers.containers = {
|
|
filebrowser = {
|
|
image = "filebrowser/filebrowser:s6";
|
|
autoStart = true;
|
|
ports = [ "80:8080" ];
|
|
volumes = [
|
|
"/home/kitty:/home/kitty"
|
|
"/home/kitty/filebrowser/config:/config"
|
|
"/home/kitty/filebrowser/database:/database"
|
|
];
|
|
environment = {
|
|
PUID = "1000";
|
|
PGID = "994";
|
|
};
|
|
};
|
|
};
|
|
}
|