Removarr allows users to vote for media to be deleted on a shared media library.
It is built to work with your existing Plex/Jellyfin library.
- Plex integration :
- User authentication
- Enable/Disable libraries
- Jellyfin integration :
- User authentication
- Sonarr integration : list TV Shows from the enabled plex libraries
- Radarr integration : list Movies from the enabled plex libraries
- Display storage information to users
- Mobile support with PWA.
Define the removarr service in your compose.yaml as follows:
change
/path/to/configwith your custom directory path
services:
removarr:
container_name: removarr
image: tphilippot/removarr:latest
ports:
- 3000:3000
volumes:
- /path/to/config:/app/configThe starts the service
docker compose up -d
Start the development server on http://localhost:3000:
# npm
npm install
npm run dev
# pnpm
pnpm install
pnpm dev
# yarn
yarn install
yarn dev
# bun
bun install
bun run devCheck out the deployment documentation for more information.
