media
This commit is contained in:
parent
552eceaf18
commit
d35531c1bd
15 changed files with 365 additions and 4 deletions
22
fili/services/media/overseerr.nix
Normal file
22
fili/services/media/overseerr.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ config, ... }:
|
||||
let
|
||||
port = 11002;
|
||||
in
|
||||
{
|
||||
config.networking.firewall.allowedTCPPorts = [ port ];
|
||||
|
||||
config.virtualisation.oci-containers.containers = {
|
||||
overseerr = {
|
||||
image = "mirror.gcr.io/fallenbagel/jellyseerr:develop";
|
||||
environment = {
|
||||
PORT = "5555";
|
||||
TZ = "Europe/Amsterdam";
|
||||
LOG_LEVEL = "debug";
|
||||
};
|
||||
extraOptions = [ "--network=host" ];
|
||||
volumes = [
|
||||
"/var/lib/microvms/rr/storage/data/overseerr:/app/config"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue