Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/TheUltimateC0der/alternatrr

alternatrr lets you add alternative titles to your sonarr instance with a simple WebUI
https://github.com/TheUltimateC0der/alternatrr

sonarr sonarr-companion sonarr-pvr sonarr3

Last synced: 26 days ago
JSON representation

alternatrr lets you add alternative titles to your sonarr instance with a simple WebUI

Lists

README

        

# What alternatrr does
alternatrr lets you add alternative titles to your sonarr instance by editing the sonarr.db file directly via a simple UI.

# docker-compose.yaml
```yaml
# example docker-compose.yml

version: '3'
services:
alternatrr:
image: ghcr.io/theultimatec0der/alternatrr:latest
environment:
- ConnectionStrings__DefaultConnection=Data Source=/opt/alternatrr/app/alternatrr.db
- ConnectionStrings__sonarr=Data Source=/opt/sonarr/sonarr.db
- Login__Username=Test
- Login__Password=ChangeMe321!
# Needed for reverseproxy
- VIRTUAL_HOST=alternatrr.YOURDOMAIN.COM
- VIRTUAL_PORT=80
- LETSENCRYPT_HOST=alternatrr.YOURDOMAIN.COM
- LETSENCRYPT_EMAIL=YOUREMAILADDRESS
volumes:
- /opt/sonarr:/opt/sonarr #Mounting the directory with sonarr.db in it
- /opt/alternatrr/app:/opt/alternatrr/app #Mounting the alternatrr.db peristent login
```