1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
---
title: "Sonarr"
date: 2023-01-10T19:06:43-03:00
draft: false
weight: 4
summary: Sonarr tv collection manager setup and configuration
---
# What is Sonarr?
From their [wiki](https://wiki.servarr.com/sonarr):
> Sonarr is a PVR for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new episodes of your favorite shows and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.
In YAMS, Sonarr is going to manage all our TV Shows, download them, sort them, etc.
## Initial configuration
In your browser, go to [http://{your-ip-address}:8989/]() and you'll see Sonarr's empty page. You'll also notice you have 3 messages on the system tab, but we'll deal with them later.
[![sonarr-1](/pics/sonarr-1.png)](/pics/sonarr-1.png)
### Media management
First, go to "Settings" and then "Media management". On this screen:
- Click on "Show Advanced".
- Check the "Rename Episodes" box.
- Change "Standard Episode Format" to `{Series Title} - S{season:00}E{episode:00} - {Episode Title}`
- Change "Daily Episode Format" to `{Series Title} - {Air-Date} - {Episode Title}`
- Change "Anime Episode Format" to `{Series Title} - S{season:00}E{episode:00} - {Episode Title}`
- Change "Series Folder Format" to `{Series TitleYear}`
[![sonarr-2](/pics/sonarr-2.png)](/pics/sonarr-2.png)
At the bottom of the same screen, go to "Root folders" and click on "Add Root Folder".
[![sonarr-3](/pics/sonarr-3.png)](/pics/sonarr-3.png)
And add the `/tv/` folder
[![sonarr-4](/pics/sonarr-4.png)](/pics/sonarr-4.png)
**Note:** This is NOT on your filesystem! The `/tv/` folder exists inside the `docker` environment and maps to your server `/mediafolder/tv/` folder!
Finally, click on "Save Changes".
[![sonarr-5](/pics/sonarr-5.png)](/pics/sonarr-5.png)
### Indexers
Here, you'll add all the indexers you want to use to get your TV shows. This is where you'll tie in Sonarr with [Jackett](/config/jackett).
In "Settings", go to "Indexers" and click on the ➕ button.
[![sonarr-6](/pics/sonarr-6.png)](/pics/sonarr-6.png)
On the "Add Indexer" screen, click on "Torznab".
[![sonarr-7](/pics/sonarr-7.png)](/pics/sonarr-7.png)
For this step, you'll need to go back to Jackett and click on the "Copy Torznab Feed" button of your desired indexer. Since on [Jackett](/config/jackett) I configured "eztv", I'll be grabbing its Torznab Feed link.
[![sonarr-9](/pics/sonarr-9.png)](/pics/sonarr-9.png)
Then back at Sonarr, add all the information to the "Add Indexer" screen.
- On "Name", add the name of your indexer (in this case, "eztv").
- On "URL", paste the Torznab Feed URL for your indexer. Notice how I'm replacing [http://{your-ip-address}:9117]() with [http://jackett:9117](). This is so Sonarr makes use of the internal docker network instead of the outside bridge. You should make this change too.
- On "API Key", paste your Jackett API key (Remember how I told you that [you'll need it later](/config/jackett/#dont-forget-to-grab-your-api-key)? Well, this is the moment hehe).
- On "Categories", select `TV`
[![sonarr-8](/pics/sonarr-8.png)](/pics/sonarr-8.png)
At the bottom, you can click on "Test" and if everything is OK you should see a ✅.
[![sonarr-10](/pics/sonarr-10.png)](/pics/sonarr-10.png)
[![sonarr-11](/pics/sonarr-11.png)](/pics/sonarr-11.png)
If everything is fine, click on "Save". You should see your indexer added to the "Indexers" page now!
[![sonarr-12](/pics/sonarr-12.png)](/pics/sonarr-12.png)
#### How many indexers can I have?
As many as you want! Just repeat the steps to add new indexers in [Jackett](/config/jackett) and then follow this instructions again to add them to Sonarr. The more indexers you have, the better!
### Download Clients
Here, you'll add the download clients for Sonarr. That's where you'll tie in Sonarr with [qBittorrent](/config/qbittorrent).
In "Settings", go to "Download Clients" and click on the ➕ button.
[![sonarr-13](/pics/sonarr-13.png)](/pics/sonarr-13.png)
On the "Add Download Client" screen, click on "qBittorrent".
[![sonarr-14](/pics/sonarr-14.png)](/pics/sonarr-14.png)
- In Name, add the name of your download client (qBittorrent).
- On Host, add `qbittorrent`.
- On Username, add `admin`.
- On Password, add `adminadmin`.
[![sonarr-15](/pics/sonarr-15.png)](/pics/sonarr-15.png)
At the bottom, you can click on "Test" and if everything is OK you should see a ✅
[![sonarr-10](/pics/sonarr-10.png)](/pics/sonarr-10.png)
[![sonarr-11](/pics/sonarr-11.png)](/pics/sonarr-11.png)
If everything is fine, click on "Save". You should see your download client added to the "Download Clients" page now!
[![sonarr-16](/pics/sonarr-16.png)](/pics/sonarr-16.png)
### Checking if everything worked
To check If everything is working corrently, In "System" go to "Status". In "Health", you should see "No issues with configuration". If you don't see that message, go back in the tutorial and try to fix it!
[![sonarr-17](/pics/sonarr-17.png)](/pics/sonarr-17.png)
## Moving forward!
That's it! Now we can continue with [Bazarr](/config/bazarr).
|