Add readarr

This commit is contained in:
Jean Froment 2021-12-06 18:53:53 +01:00
parent 8efee6c10c
commit 1dd8c36391
3 changed files with 25 additions and 0 deletions

View File

@ -14,6 +14,7 @@ seedbox and personal media server.
| Radarr | radarr.yourdomain.com | [linuxserver/radarr](https://hub.docker.com/r/linuxserver/radarr) | *develop* | Movies monitor |
| Bazarr | bazarr.yourdomain.com | [linuxserver/bazarr](https://hub.docker.com/r/linuxserver/bazarr) | *latest* | Subtitles monitor |
| Lidarr | lidarr.yourdomain.com | [linuxserver/lidarr](https://hub.docker.com/r/linuxserver/lidarr) | *develop* | Music monitor |
| Readarr | readarr.yourdomain.com | [linuxserver/readarr](https://hub.docker.com/r/linuxserver/readarr) | *nightly* | Ebook and comic monitor |
| Komga | komga.yourdomain.com | [gotson/komga](https://hub.docker.com/r/gotson/komga) | *latest* | Comic Book Manager |
| Ombi | ombi.yourdomain.com | [linuxserver/ombi](https://hub.docker.com/r/linuxserver/ombi) | *latest* | Plex content requests |
| Overseerr | overseerr.yourdomain.com | [linuxserver/overseerr](https://hub.docker.com/r/linuxserver/overseerr) | *latest* | Plex content requests |

View File

@ -8,6 +8,7 @@ sonarr: enable
radarr: enable
bazarr: enable
lidarr: enable
readarr: false
komga: disable
ombi: disable
overseerr: enable

23
services/readarr.yaml Normal file
View File

@ -0,0 +1,23 @@
services:
readarr:
image: lscr.io/linuxserver/readarr:nightly
container_name: readarr
restart: always
volumes:
- configreadarr:/config
- torrents:/torrents
- /etc/localtime:/etc/localtime:ro
environment:
- PGID=${PGID}
- PUID=${PUID}
- TZ=${TZ}
labels:
- "traefik.enable=true"
- "traefik.http.routers.readarr.rule=Host(`readarr.${TRAEFIK_DOMAIN}`)"
- "traefik.http.routers.readarr.middlewares=common-auth@file"
volumes:
configreadarr:
driver: local-persist
driver_opts:
mountpoint: /data/config/readarr