JavaScript is required

Windows

This guide will show you how to install Reaparr on Windows using Docker Desktop. Follow the steps to get Reaparr up and running on your Windows machine.

Prerequisites

Ensure you have Docker Desktop installed on your Windows machine. You can download it from the official Docker website.

Installing Reaparr with Docker Desktop

Alt text

  1. Open Docker Desktop and click on the search bar at the top
  2. Search for reaparr and click on the reaparr/reaparr image
  3. You can change the tag to latest if you want to use the latest version of Reaparr, or dev if you want to use the latest development version of Reaparr
  4. Next, click on the Run button

Alt text

  1. A new window will open where you can configure the container, click on Optional Settings to expand the options.
  2. Ensure you have the following filled in:
    • Name: Reaparr, this is the name of the container
    • Host port: 7000, this is the port you will use to access Reaparr in the browser
    • Volumes: these are the locations where Reaparr will store its data. The left box is for the folder on your computer, the right box is for the folder inside the container. You can change the left box to any folder on your computer, but the right box should stay the same.
      • /Config: this is where Reaparr will store its configuration, logs and database
      • /Movies: this is where Reaparr will move the movies after it has finished downloading them
      • /TvShows: this is where Reaparr will move the tv-shows after it has finished downloading them
      • /Downloads: this is where Reaparr will temporarily store the media while downloading
  3. Once everything is filled in, press Run at the bottom of the window

Alt text

  1. If all went well you should see the Reaparr booting up in the Docker Desktop window
  2. Final step, go to your browser and navigate to http://localhost:7000, and you should see Reaparr working!

Troubleshooting

If you encounter issues downloading a file, you may need to check your permissions to the mounts within the Docker container. To change the mount permissions:

  1. Open Docker image
  2. Locate the Reaparr Container from the Container view list
  3. Click Reaparr
  4. From the available tabs at the top, click Exec This will present you with a shell window. image
  5. Run the following commands (copy and paste)
chmod -R 777 /Config
chmod -R 777 /Downloads
chmod -R 777 /Movies
chmod -R 777 /TvShows

image

  1. This will permit Docker to write to your Windows mounts (assuming you have successfully mounted them).
  2. Done!
Continue with the Reaparr setup guide to connect your Plex account and configure your settings."