How to Install Sonarr on Fedora CoreOS

Sonarr is a popular open-source application used for managing and automating TV show downloads. Fedora CoreOS is a minimal and lightweight operating system optimized for container and cloud-native deployments. In this tutorial, we will walk you through the steps to install Sonarr on Fedora CoreOS.

Prerequisites

Step 1: Install Docker

Before we can install Sonarr, we need to install Docker on the server. To do that, we will use the following command:

sudo yum install docker -y

Once the installation is complete, start the Docker service with the following command:

sudo systemctl start docker

Finally, enable Docker to start at boot:

sudo systemctl enable docker

Step 2: Install Sonarr

To install Sonarr, we will use the Docker image provided by Sonarr.tv. Run the following command to download the Sonarr Docker image:

docker pull linuxserver/sonarr

Once the download is complete, we can create the Sonarr container with the docker run command.

sudo docker run -d \
  --name sonarr \
  -e PUID=$(id -u) \
  -e PGID=$(id -g) \
  -e TZ=YOUR_TIMEZONE \
  -p 8989:8989 \
  -v /path-to-config:/config \
  -v /path-to-downloads:/downloads \
  -v /path-to-tvshows:/tv \
  linuxserver/sonarr

Let's go through each argument in the above command:

Step 3: Access Sonarr

Once the container is running, you can access the Sonarr web interface by opening your web browser and navigating to http://SERVER_IP:8989. You will be prompted to set up an administrator account and configure Sonarr to point to your desired indexers and download clients.

Conclusion

In this tutorial, you learned how to install Sonarr on Fedora CoreOS using Docker. Now that you have Sonarr up and running, you can start using it to automate your TV show downloads.

If you want to self-host in an easy, hands free way, need an external IP address, or simply want your data in your own hands, give IPv6.rs a try!

Alternatively, for the best virtual desktop, try Shells!