Created
March 13, 2025 03:10
-
-
Save TautvydasDerzinskas/6294bc356f7ad04e44493e1d9be9f01a to your computer and use it in GitHub Desktop.
Arr stack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "3.7" | |
services: | |
transmission: | |
image: lscr.io/linuxserver/transmission:latest | |
container_name: transmission | |
environment: | |
- PGID=${PGID} | |
- PUID=${PUID} | |
- TZ=${TIME_ZONE} | |
volumes: | |
- ${APP_CONFIG_BASE}/transmission/config:/config | |
- ${DOWNLOADS_PATH}:/downloads | |
ports: | |
- 9091:9091 | |
- 51413:51413 | |
- 51413:51413/udp | |
restart: unless-stopped | |
# https://github.com/linuxserver/docker-radarr | |
radarr: | |
image: linuxserver/radarr:latest | |
container_name: radarr | |
restart: unless-stopped | |
ports: | |
- "7878:7878" | |
environment: | |
- PGID=${PGID} | |
- PUID=${PUID} | |
- TZ=${TIME_ZONE} | |
volumes: | |
- ${APP_CONFIG_BASE}/radarr/config:/config | |
- ${MOVIES_PATH}:/movies | |
- ${DOWNLOADS_PATH}:/downloads | |
# https://github.com/linuxserver/docker-sonarr | |
sonarr: | |
image: linuxserver/sonarr:latest | |
container_name: sonarr | |
restart: always | |
ports: | |
- "8989:8989" | |
environment: | |
- PGID=${PGID} | |
- PUID=${PUID} | |
- TZ=${TIME_ZONE} | |
volumes: | |
- ${APP_CONFIG_BASE}/sonarr/config:/config | |
- ${SERIES_PATH}:/tv | |
- ${DOWNLOADS_PATH}:/downloads | |
flaresolverr: | |
image: ghcr.io/flaresolverr/flaresolverr:latest | |
container_name: flaresolverr | |
environment: | |
- LOG_LEVEL=${LOG_LEVEL:-info} | |
- LOG_HTML=${LOG_HTML:-false} | |
- CAPTCHA_SOLVER=${CAPTCHA_SOLVER:-none} | |
- TZ=${TIME_ZONE} | |
ports: | |
- "8191:8191" | |
restart: unless-stopped | |
# https://github.com/linuxserver/docker-prowlarr | |
prowlarr: | |
image: linuxserver/prowlarr:develop | |
container_name: prowlarr | |
restart: unless-stopped | |
ports: | |
- "9696:9696" | |
cap_add: | |
- NET_ADMIN | |
environment: | |
- PGID=${PGID} | |
- PUID=${PUID} | |
- TZ=${TIME_ZONE} | |
volumes: | |
- ${APP_CONFIG_BASE}/prowlarr/config:/config | |
- ${DOWNLOADS_PATH}:/downloads # transmission watch directory |
Author
TautvydasDerzinskas
commented
Mar 13, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment