summaryrefslogtreecommitdiff
path: root/docker-compose.example.yaml
diff options
context:
space:
mode:
authorJay Taggart <jataggart@gmail.com>2023-01-31 13:10:13 +0000
committerRoger Gonzalez <roger@rogs.me>2023-01-31 13:10:13 +0000
commit638a944a4b580baec70ea4ec5576ef2af65ccee3 (patch)
tree73f38f3475d4fab058d158e590083dd560b60711 /docker-compose.example.yaml
parente0bd92f1cb2487dc544b503a772bdf62647a3282 (diff)
Add lidarr and readarr
Diffstat (limited to 'docker-compose.example.yaml')
-rw-r--r--docker-compose.example.yaml32
1 files changed, 32 insertions, 0 deletions
diff --git a/docker-compose.example.yaml b/docker-compose.example.yaml
index 4c80437..785a2cc 100644
--- a/docker-compose.example.yaml
+++ b/docker-compose.example.yaml
@@ -64,6 +64,38 @@ services:
- 7878:7878
restart: unless-stopped
+ # Lidarr is used to query, add downloads to the download queue and index Music
+ # https://lidarr.audio/
+ lidarr:
+ image: lscr.io/linuxserver/lidarr
+ container_name: lidarr
+ environment:
+ - PUID=<your_PUID>
+ - PGID=<your_PGID>
+ volumes:
+ - <media_folder>/music:/music
+ - <media_folder>/downloads:/downloads
+ - <install_location>/config/lidarr:/config
+ ports:
+ - 8686:8686
+ restart: unless-stopped
+
+ # Readarr is used to query, add downloads to the download queue and index Audio and Ebooks
+ # https://readarr.com/
+ readarr:
+ image: lscr.io/linuxserver/readarr
+ container_name: readarr
+ environment:
+ - PUID=<your_PUID>
+ - PGID=<your_PGID>
+ volumes:
+ - <media_folder>/books:/books
+ - <media_folder>/downloads:/downloads
+ - <install_location>/config/readarr:/config
+ ports:
+ - 8787:8787
+ restart: unless-stopped
+
# Bazarr is used to download and categorize subtitles
bazarr:
image: lscr.io/linuxserver/bazarr