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" ];
|
||||
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 = {
|
||||
|
|
Loading…
Reference in New Issue