Plex Setup
The final product:
-
Plex Media Server is a a central streaming hub for all your media files (movies, TV shows, music etc).
-
VPN provides a secure and encrypted connection to usenet.
-
Lidarr, Radarr and Sonarr monitor usnet to download new movie, TV show or music releases.
-
Prowlarr manages the usenet indexer.
-
Sabnzdb manages the usenet downloads.
Usenet is a decentralized network for file sharing.
Docker Engine
Learn how to install Docker Engine.
Remember to carry out the post-installation steps if installing on Linux.
Verify that you can run docker commands without sudo:
docker run hello-world
Docker Compose
Docker Compose is a tool that lets you define and run multi-container Docker applications with a single command.
Create a file called compose.yaml
in your project directory.
You define individual software components as services. Services interact with each other through networks. Volumes allow services to store and share data, effectively mounting external filesystems.