14 lines
279 B
Nix
14 lines
279 B
Nix
|
{...}:
|
||
|
|
||
|
{
|
||
|
virtualisation.oci-containers.containers."overseerr" = {
|
||
|
image = "sctx/overseerr:latest";
|
||
|
volumes = [ "/var/lib/overseerr:/app/config" ];
|
||
|
environment = {
|
||
|
"LOG_LEVEL" = "debug";
|
||
|
"TZ" = "Europe/Rome";
|
||
|
};
|
||
|
#ports = [ "5055:5055" ];
|
||
|
};
|
||
|
}
|