Installing Overseerr can be really easy!
Overseerr is a free and open source software application for managing requests for your media library. It integrates with your existing services, such as Sonarr, Radarr, and Plex!
First; we are going to use Docker and Dockge If you do not already have Docker installed, follow my guide here.
Open up Dockge and compose a new stack.
Then you can copy/paste the following to install Overseerr (Make sure to change the Time Zone).
version: "3"
services:
overseerr:
image: sctx/overseerr:latest
container_name: overseerr
environment:
- LOG_LEVEL=debug
- TZ=America/Denver
- PORT=5055 #optional
ports:
- 5055:5055
volumes:
- ./data/config:/app/config
restart: unless-stopped
x-dockge:
urls:
- http://ipaddress:5055
That's it! Head over to http://ipaddress:5055 and continue with the setup!
Need more information on Overseerr? Head over to their GitHub!