Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ I am running it in Ubuntu Server 22.04; I also tested this setup on a [Synology
| [Cleanuparr](https://github.com/Cleanuparr/Cleanuparr) | Optional - Cleanuparr is a tool for automating the cleanup of unwanted or blocked files in Sonarr and Radarr<br/>Enable with `COMPOSE_PROFILES=cleanuparr` | [cleanuparr/cleanuparr](https://ghcr.io/cleanuparr/cleanuparr) | /cleanuparr |
| [Cross-Seed](https://github.com/cross-seed/cross-seed) | Optional - Cross-Seed is a tool for automating the cross-seeding of torrents<br/>Enable with `COMPOSE_PROFILES=cross-seed` | [cross-seed/cross-seed](https://ghcr.io/cross-seed/cross-seed) | |
| [Autobrr](https://github.com/autobrr/autobrr) | Optional - Autobrr is a tool for automating the downloading of torrents<br/>Enable with `COMPOSE_PROFILES=autobrr` | [autobrr/autobrr](https://ghcr.io/autobrr/autobrr) | /autobrr |
| [Suggestarr](https://github.com/autobrr/autobrr) | Optional - SuggestArr is a project designed to automate media content recommendations and download requests<br/>Enable with `COMPOSE_PROFILES=suggestarr` | [ciuse99/suggestarr](https://hub.docker.com/r/ciuse99/suggestarr) | /suggestarr |

Optional containers are not enabled by default, they need to be enabled,
see [Optional Services](#optional-services) for more information.
Expand Down
26 changes: 26 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,32 @@ services:
- homepage.widget.type=prowlarr
- homepage.widget.url=http://prowlarr:9696/prowlarr
- homepage.widget.key=${PROWLARR_API_KEY}
suggestarr:
image: ciuse99/suggestarr:latest
container_name: suggestarr
environment:
- SUBPATH=/suggestarr
volumes:
- ${CONFIG_ROOT:-.}/suggestarr:/app/config/config_files
restart: always
labels:
- traefik.enable=true
- traefik.http.routers.suggestarr.rule=(Host(`${HOSTNAME}`) && PathPrefix(`/suggestarr`))
- traefik.http.routers.suggestarr.tls=true
- traefik.http.routers.suggestarr.tls.certresolver=myresolver
- traefik.http.services.suggestarr.loadbalancer.server.port=5000
- traefik.http.routers.suggestarr.middlewares=suggestarr-strip-slash
- traefik.http.middlewares.suggestarr-strip-slash.redirectregex.regex=(^.*\/suggestarr$$)
- traefik.http.middlewares.suggestarr-strip-slash.redirectregex.replacement=$$1/
- traefik.http.middlewares.suggestarr-strip-slash.redirectregex.permanent=false
- homepage.group=Media
- homepage.name=Suggestarr
- homepage.icon=suggest-arr.png
- homepage.href=/suggestarr
- homepage.description=Media recommendations
- homepage.weight=6
profiles:
- suggestarr
flaresolverr:
image: 21hsmw/flaresolverr:nodriver
container_name: flaresolverr
Expand Down
Loading