Skip to content

Commit

Permalink
FEAT: Add Prowlarr and flaresolver to the stack
Browse files Browse the repository at this point in the history
Adding Prowlarr and flaresolver to the stack (docker-compose.yml - l281 - 313)
Edit README in consequence
  • Loading branch information
CDM authored and CDM committed Mar 28, 2022
1 parent 9cc0f2f commit 556c02e
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -arr-compose
Stack containing majority of most used -arr apps (except [prowlarr](https://github.com/Prowlarr/Prowlarr), comming soon) with a VPN transmission client and Traefik for off-site use
Stack containing majority of most used -arr apps with a VPN transmission client and Traefik for off-site use

# stack description

Expand All @@ -14,6 +14,7 @@ this docker-compose stack is using the following services:
- [readarr](https://github.com/Readarr/Readarr): a book-related equivalent of Sonarr
- [Lidarr](https://github.com/Lidarr/Lidarr): a song-related equivalent of Sonarr
- [Radarr](https://github.com/Radarr/Radarr): a movie scrapper, downloader and organizer
- [Prowlarr](https://github.com/Prowlarr/Prowlarr): Torrent tracker manager for -arr apps
- [Portainer](https://github.com/portainer/portainer): a web UI for managing containers and stacks

# Configuration
Expand Down
34 changes: 34 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,40 @@ services:
depends_on:
- "traefik"

prowlarr:
image: ghcr.io/linuxserver/prowlarr:develop
container_name: prowlarr
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/paris
volumes:
- ./prowlarr/data:/config
# network_mode: "host"
ports:
- 9696:9696
restart: unless-stopped
labels:
- "traefik.enable=true"
- "traefik.http.routers.prowlarr.entryPoints=websecure"
- "traefik.http.routers.prowlarr.tls.certResolver=letsEncrypt"
- "traefik.http.routers.prowlarr.rule=Host(`prowlarr.domain.name`)" # Edit here to change the domain name
- "traefik.http.services.prowlarr.loadbalancer.server.port=9696"
depends_on:
- "traefik"
flaresolverr:
image: flaresolverr/flaresolverr:latest
container_name: flaresolverr
environment:
- LOG_LEVEL=${LOG_LEVEL:-info}
- LOG_HTML=${LOG_HTML:-false}
- CAPTCHA_SOLVER=${CAPTCHA_SOLVER:-none}
- TZ=Europe/Paris
# network_mode: "host"
ports:
- "${PORT:-8191}:8191"
restart: unless-stopped

###### ----- Docker control ----- ######

portainer:
Expand Down

0 comments on commit 556c02e

Please sign in to comment.