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" ]; volumes = [ "/var/lib/bazarr:/config" "/mnt/plex:/media" ];
dependsOn = [ "plex" ]; dependsOn = [ "plex" ];
}; };
}; # Configure podgrab - podcasts
# Setup podgrab "podgrab" = {
services.podgrab = { image = "akhilrex/podgrab";
enable = true; environment = { "CHECK_FREQUENCY" = "5"; };
port = 4242; volumes = [ "/var/lib/podgrab:/config" "/mnt/podcasts:/assets" ];
passwordFile = config.sops.secrets.podgrab.path; ports = [ "4242:8080" ];
};
}; };
# Make the containers depend on their mounts # Make the containers depend on their mounts
systemd.services = { systemd.services = {