Switch podgrab to audiobookshelf

This commit is contained in:
Nathan McCarty 2023-06-21 23:04:27 -04:00
parent 3dd843baa1
commit 58d5087f44
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
1 changed files with 17 additions and 6 deletions

View File

@ -243,11 +243,22 @@
dependsOn = [ "plex" ];
};
# Configure podgrab - podcasts
"podgrab" = {
image = "akhilrex/podgrab";
environment = { "CHECK_FREQUENCY" = "5"; };
volumes = [ "/var/lib/podgrab:/config" "/mnt/podcasts:/assets" ];
ports = [ "4242:8080" ];
# "podgrab" = {
# image = "akhilrex/podgrab";
# environment = { "CHECK_FREQUENCY" = "5"; };
# volumes = [ "/var/lib/podgrab:/config" "/mnt/podcasts:/assets" ];
# ports = [ "4242:8080" ];
# };
# Configure audio bookshelf
"audiobookshelf" = {
image = "ghcr.io/advplyr/audiobookshelf:latest";
ports = [ "13378:80" ];
volumes = [
"/mnt/podcasts/audiobooks:/audiobooks"
"/mnt/podcasts/podcasts:/podcasts"
"/mnt/podcasts/metadata:/metadata"
"/var/lib/audiobookshelf:/config"
];
};
};
# Make the containers depend on their mounts
@ -257,6 +268,6 @@
"podman-jellyfin" = { after = [ "mnt-music.mount" "mnt-plex.mount" ]; };
"podman-sabnzbd" = { after = [ "mnt-scratch.mount" ]; };
"podman-lidarr" = { after = [ "mnt-music.mount" ]; };
"podman-podgrab" = { after = [ "mnt-podcasts.mount" ]; };
"podman-audiobookshelf" = { after = [ "mnt-podcasts.mount" ]; };
};
}