First thing you need to know is that you MUST not use localhost when configure services connections, you should use the name of the container.
Examples:
- When adding Jackett in Sonarr, you MUST not use localhost, you MUST use http://jacket:9117/...
Jackett works as a proxy server: it translates queries from apps (Sonarr, Radarr and others) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software
Access http://localhost:9117/ to add your favorite tracker (The Pirate Bay, RARBG, Kick-Ass, ...)
https://github.com/Jackett/Jackett/wiki
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
Access http://localhost:8989/ to configure it.
- Add all the trackers you configured on Jackett (add only TV categories, you can get this information on Jackett)
- Add transmission as your download client
- Add a TV series and Sonarr will ask you for a path, add
/tv
https://github.com/Sonarr/Sonarr/wiki
Radarr is an independent fork of Sonarr reworked for automatically downloading movies via Usenet and BitTorrent.
Access http://localhost:7878/ to configure it.
- Add all the trackers you configured on Jackett (add only Movie categories, you can get this information on Jackett)
- Add transmission as your download client
- Add a Movie and Radarr will ask you for a path, add
/movies
https://github.com/Radarr/Radarr/wiki
Plex makes it possible to enjoy all of your media, whether in your living room, the car, or on a boat in the South Pacific!
- Add paths
- /movies for movies
- /tv for tv series
https://support.plex.tv/articles/
If you are having issues with Plex, it's probably because of poorly IPv6 support, run the following command to fix it.
sudo -s
sysctl -w net.ipv6.conf.all.disable_ipv6=1
sysctl -w net.ipv6.conf.all.autoconf=0
sysctl -w net.ipv6.conf.default.disable_ipv6=1
sysctl -w net.ipv6.conf.default.autoconf=0
exit