1

Services/Fileflows: Init with version 25.10

This commit is contained in:
2025-11-08 20:47:01 +01:00
parent dbb39fa40f
commit 39e608fac8
2 changed files with 52 additions and 0 deletions

View File

@ -24,6 +24,7 @@
# General services
../services/authelia.nix
../services/fileflows.nix
../services/gitea.nix
../services/gitea-runner.nix
../services/immich.nix

View File

@ -0,0 +1,51 @@
{
config,
lib,
pkgs,
...
}: let
version = "25.10";
in {
virtualisation.oci-containers.containers = {
fileflows = {
image = "revenz/fileflows:${version}";
autoStart = true;
login = {
# Uses DockerHub by default
# registry = "";
# DockerHub Credentials
username = "christoph.urlacher@protonmail.com";
passwordFile = "${config.sops.secrets.docker-password.path}";
};
dependsOn = [];
ports = [];
volumes = [
"fileflows_temp:/temp"
"fileflows_data:/app/Data"
"fileflows_logs:/app/Logs"
"/media/Movie:/media/movies"
"/media/Show:/media/tvshows"
"/var/run/docker.sock:/var/run/docker.sock:ro"
];
environment = {
PUID = "1000";
PGID = "1000";
TZ = "Europe/Berlin";
};
extraOptions = [
"--privileged"
"--device=nvidia.com/gpu=all"
"--net=behind-nginx"
];
};
};
}