add overseerr container

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2024-06-19 16:13:31 -04:00
parent be327b6c90
commit c4c06d2337
No known key found for this signature in database
GPG Key ID: 1FACF4075E3212F7

View File

@ -131,4 +131,15 @@ in
defaultSopsFile = ../secrets.yaml;
secrets."docker/qbit_vpn".owner = "docker-service";
};
overseerr = {
image = "lscr.io/linuxserver/overseerr";
environment = {
PUID = "998";
PGID = "100";
TZ = "America/New_York";
};
volumes = [ "/ZFS/Media/Docker/Docker/Storage/overseerr:/config" ];
ports = [ "5055:5055" ];
autoStart = true;
};
}