Switch podgrab to podman
This commit is contained in:
parent
6b71a0acf9
commit
77b77d5bd4
|
@ -242,12 +242,13 @@
|
||||||
volumes = [ "/var/lib/bazarr:/config" "/mnt/plex:/media" ];
|
volumes = [ "/var/lib/bazarr:/config" "/mnt/plex:/media" ];
|
||||||
dependsOn = [ "plex" ];
|
dependsOn = [ "plex" ];
|
||||||
};
|
};
|
||||||
|
# Configure podgrab - podcasts
|
||||||
|
"podgrab" = {
|
||||||
|
image = "akhilrex/podgrab";
|
||||||
|
environment = { "CHECK_FREQUENCY" = "5"; };
|
||||||
|
volumes = [ "/var/lib/podgrab:/config" "/mnt/podcasts:/assets" ];
|
||||||
|
ports = [ "4242:8080" ];
|
||||||
};
|
};
|
||||||
# Setup podgrab
|
|
||||||
services.podgrab = {
|
|
||||||
enable = true;
|
|
||||||
port = 4242;
|
|
||||||
passwordFile = config.sops.secrets.podgrab.path;
|
|
||||||
};
|
};
|
||||||
# Make the containers depend on their mounts
|
# Make the containers depend on their mounts
|
||||||
systemd.services = {
|
systemd.services = {
|
||||||
|
|
Loading…
Reference in New Issue