add basic unpackerr config

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2024-08-15 10:15:29 -04:00
parent 44839aece5
commit c05d782180
No known key found for this signature in database
GPG Key ID: 1FACF4075E3212F7

View File

@ -113,7 +113,7 @@ in
autoStart = true; autoStart = true;
}; };
overseerr = { overseerr = {
image = "ghcr.io/linuxserver/overseerr"; image = "ghcr.io/linuxserver/overseerr:latest";
environment = { environment = {
PUID = "600"; PUID = "600";
PGID = "100"; PGID = "100";
@ -127,6 +127,18 @@ in
extraOptions = [ "--network=web" ]; extraOptions = [ "--network=web" ];
autoStart = true; autoStart = true;
}; };
unpackerr = {
image = "golift/unpackerr:latest";
user = "600:100";
environment = {
TZ = "America/New_York";
};
volumes = [
"${vars.torrenting_qbit}:/data"
"${config.sops.secrets.unpackerr_conf}:/etc/unpackerr/unpackerr.conf"
];
autoStart = true;
};
whisper = { whisper = {
image = "ghcr.io/linuxserver/faster-whisper:latest"; image = "ghcr.io/linuxserver/faster-whisper:latest";
ports = [ "10300:10300" ]; ports = [ "10300:10300" ];