In this tutorial, we will guide you on how to install Lidarr on Fedora CoreOS Latest.
Lidarr runs on Docker, so we need to install Docker first. Run the following commands in the terminal to install Docker:
sudo dnf -y update
sudo dnf install -y docker
sudo systemctl enable docker.service
sudo systemctl start docker.service
To run Lidarr on Docker, we need to pull the latest Lidarr image from the Docker Hub. Run the following command to pull the latest image:
sudo docker pull lidarr/lidarr
Now that we have the Lidarr image, we need to create a Docker container to run Lidarr. Run the following command to create a container:
sudo docker run -d --name=lidarr \
-v ~/lidarr/config:/config \
-v ~/lidarr/downloads:/downloads \
-v ~/lidarr/music:/music \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=America/New_York \
-p 8686:8686 \
lidarr/lidarr
-d
option runs the container in the background and returns control to the terminal.--name
option assigns a name to the container (we chose "lidarr" in this example).-v
option mounts directories on the host to directories on the container. In this example, we mounted ~/lidarr/config
on the host to /config
in the container, ~/lidarr/downloads
on the host to /downloads
in the container, and ~/lidarr/music
on the host to /music
in the container.-e
option sets environment variables. In this example, we set the user ID (PUID
) and group ID (PGID
) to 1000, and the timezone (TZ
) to America/New_York.-p
option maps a port on the host to a port in the container. In this example, we mapped port 8686 on the host to port 8686 in the container.After running the above command, our Lidarr container should be up and running.
To access Lidarr, go to http://<your_fedoracoreos_ip_address>:8686
in your web browser. You should now be able to see the Lidarr web interface.
In this tutorial, we showed you how to install Lidarr on Fedora CoreOS Latest. With Lidarr, you can easily manage and organize your music collection.
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!