Switch podgrab to podman

This commit is contained in:
Nathan McCarty 2023-06-21 04:03:55 -04:00
parent 6b71a0acf9
commit 77b77d5bd4
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
1 changed files with 7 additions and 6 deletions

View File

@ -242,12 +242,13 @@
volumes = [ "/var/lib/bazarr:/config" "/mnt/plex:/media" ];
dependsOn = [ "plex" ];
};
};
# Setup podgrab
services.podgrab = {
enable = true;
port = 4242;
passwordFile = config.sops.secrets.podgrab.path;
# Configure podgrab - podcasts
"podgrab" = {
image = "akhilrex/podgrab";
environment = { "CHECK_FREQUENCY" = "5"; };
volumes = [ "/var/lib/podgrab:/config" "/mnt/podcasts:/assets" ];
ports = [ "4242:8080" ];
};
};
# Make the containers depend on their mounts
systemd.services = {