Added lazylibrarian and updated readarr docker image

This commit is contained in:
2025-08-06 14:02:35 +00:00
parent 5de8244b4c
commit 94b46ad204

View File

@@ -159,7 +159,7 @@ readarr-ebooks () {
-e TZ=America/New_York \
-p 8787:8787 \
--restart=always \
lscr.io/linuxserver/readarr:develop
binhex/arch-readarr
docker start readarr-ebooks
}
@@ -175,7 +175,7 @@ readarr-audiobooks () {
-e TZ=America/New_York \
-p 8788:8787 \
--restart=always \
lscr.io/linuxserver/readarr:develop
binhex/arch-readarr
docker start readarr-audiobooks
}
@@ -283,3 +283,20 @@ wizarr () {
ghcr.io/wizarrrr/wizarr
docker start wizarr
}
lazylibrarian () {
docker stop lazylibrarian
docker rm lazylibrarian
docker create \
--name=lazylibrarian \
-e PUID=1000 \
-e PGID=1000 \
-e TTZ=America/New_York \
-p 5299:5299 \
-v /etc/docker/config/lazylibrarian:/config \
-v /media/downloads:/downloads \
-v /mnt/media/audiobooks:/books \
--restart unless-stopped \
lscr.io/linuxserver/lazylibrarian:latest
docker start lazylibrarian
}