Created
March 22, 2025 05:18
-
-
Save The-Running-Dev/52123f17e6a4d37c7b01732f5195ace8 to your computer and use it in GitHub Desktop.
Docker Compose for *arr Services
This file contains 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
# Exampe .env file for the Doplarr docker-compose.yml | |
BotToken=INSERT_YOUR_KEY_HERE | |
ConfigRootPath=/path/to/your/discord-bot/data | |
RequestsAPIKey=INSERT_YOUR_KEY_HERE | |
RequestsDefaultID=1 | |
RequestsHost=requests |
This file contains 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
# Exampe .env file for the *arr docker-compose.yml | |
# Ports | |
AutheliaPort=9070 | |
BooksPort=9050 | |
FlareSolverrPort=8400 | |
HomepagePort=9000 | |
IndexerPort=9010 | |
MoviesPort=9020 | |
MusicPort=9040 | |
OrganizerPort=9001 | |
QBitTorrentPort=8200 | |
QBitTorrentTCPPorts=53980:53980 | |
QBitTorrentUDPPorts=53980:53980/udp | |
RequestsPort=9002 | |
SABnzbdPort=8300 | |
SubtitlesPort=8500 | |
TVPort=9030 | |
XXXPort=9060 | |
ConfigRootPath=/path/to/your/data/servarr | |
DownloadsPath=/path/to/your/data/Download | |
LearningPath=/path/to/your/data/Learning | |
MoviesPath=/path/to/your/data/Movies | |
MusicPath=/path/to/your/data/Music | |
SSLCertificatePath=/path/to/your/ssl/certificate | |
TVPath=/path/to/your/data/TV | |
XXXPath=/path/to/your/data/XXX | |
LidarrAPIKey=INSERT_YOUR_KEY_HERE | |
NordVPNPrivateKey=INSERT_YOUR_KEY_HERE | |
ProwlarrAPIKey=INSERT_YOUR_KEY_HERE | |
RadarrAPIKey=INSERT_YOUR_KEY_HERE | |
ReadarrAPIKey=INSERT_YOUR_KEY_HERE | |
SABnzbdAPIKey=INSERT_YOUR_KEY_HERE | |
SonarrAPIKey=INSERT_YOUR_KEY_HERE | |
SubtitlesAPIKey=INSERT_YOUR_KEY_HERE |
This file contains 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
# docker-compose.yml for the Discord not that communicates with Overseer | |
# https://github.com/kiranshila/Doplarr | |
x-defaultEnvironment: &defaultEnvironment | |
PUID: 1000 | |
PGID: 100 | |
UMASK: 002 | |
TZ: Etc/UTC | |
x-commonKeys: &commonOptions | |
restart: unless-stopped | |
stdin_open: true | |
tty: true | |
x-dnsServers: &dnsServers | |
dns: | |
- 45.90.28.29 | |
- 45.90.30.29 | |
networks: | |
proxy-network: | |
external: true | |
services: | |
requests-bot: | |
container_name: requests-bot | |
image: ghcr.io/kiranshila/doplarr:latest | |
environment: | |
<<: *defaultEnvironment | |
OVERSEERR__URL: http://${RequestsHost:?err}:5055 | |
OVERSEERR__API: ${RequestsAPIKey:?err} | |
OVERSEERR__DEFAULT_ID: ${RequestsDefaultID:?err} | |
DISCORD__TOKEN: ${BotToken:?err} | |
DISCORD__REQUESTED_MSG_STYLE: :embed | |
# LOG_LEVEL: :trace | |
networks: | |
proxy-network: | |
<<: [*dnsServers, *commonOptions] |
This file contains 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
# dcker-compose.yml for all the *arr services | |
x-defaultEnvironment: &defaultEnvironment | |
PUID: 1000 | |
PGID: 100 | |
UMASK: 002 | |
TZ: Etc/UTC | |
x-commonKeys: &commonOptions | |
restart: unless-stopped | |
stdin_open: true | |
tty: true | |
x-dnsServers: &dnsServers | |
dns: | |
- 45.90.28.29 | |
- 45.90.30.29 | |
x-dependsOnVPN: &dependsOnVPN | |
network_mode: service:vpn | |
depends_on: | |
vpn: | |
condition: service_healthy | |
networks: | |
proxy-network: | |
name: proxy-network | |
external: true | |
services: | |
vpn: | |
container_name: vpn | |
image: ghcr.io/bubuntux/nordlynx | |
cap_add: | |
- NET_ADMIN | |
- NET_RAW | |
- SYS_MODULE | |
environment: | |
- PRIVATE_KEY=${NordVPNPrivateKey:?err} | |
- ALLOWED_IPS=0.0.0.0/1,128.0.0.0/2 | |
- NET_LOCAL=192.168.1.0/24,192.168.20.0/24,100.0.0.0/16 | |
- TZ=Etc/UTC | |
- "POST_UP=ip -4 route add $$(wg | awk -F'[: ]' '/endpoint/ {print $$5}') via $$(ip route | awk '/default/ {print $$3}')" | |
- "PRE_DOWN=ip -4 route del $$(route -n | awk '/255.255.255.255/ {print $$1}') via $$(ip route | awk '/default/ {print $$3}')" | |
- DNS=45.90.28.29,45.90.30.29 | |
volumes: | |
- /lib/modules:/lib/modules:ro | |
networks: | |
proxy-network: | |
ports: | |
- ${QBitTorrentPort:?err}:8080 | |
- ${QBitTorrentTCPPorts:?err} | |
- ${QBitTorrentUDPPorts:?err} | |
- ${SABnzbdPort:?err}:6799 | |
- ${SubtitlesPort:?err}:6767 | |
security_opt: | |
- no-new-privileges:true | |
sysctls: | |
- net.ipv4.conf.all.src_valid_mark=1 | |
- net.ipv4.conf.all.rp_filter=2 | |
- net.ipv6.conf.all.disable_ipv6=1 | |
healthcheck: | |
interval: 60s | |
timeout: 30s | |
retries: 5 | |
<<: [*dnsServers, *commonOptions] | |
authelia: | |
container_name: authelia | |
image: ghcr.io/authelia/authelia:latest | |
environment: | |
<<: *defaultEnvironment | |
volumes: | |
- ${ConfigRootPath:?err}/authelia:/config | |
networks: | |
proxy-network: | |
ports: | |
- ${AutheliaPort}:9091 | |
<<: [*dnsServers, *commonOptions] | |
profiles: | |
- ignore | |
torrents: | |
container_name: torrents | |
image: ghcr.io/hotio/qbittorrent | |
environment: | |
<<: *defaultEnvironment | |
volumes: | |
- ${ConfigRootPath:?err}/qbittorrent:/config | |
- ${DownloadsPath:?err}:/downloads | |
- ${SSLCertificatePath:?err}:/certs | |
healthcheck: | |
test: curl -k --fail https://localhost:8080 || exit 1 | |
interval: 20s | |
timeout: 10s | |
start_period: 30s | |
<<: [*dependsOnVPN, *commonOptions] | |
newsgroups: | |
container_name: newsgroups | |
image: lscr.io/linuxserver/sabnzbd:latest | |
environment: | |
<<: *defaultEnvironment | |
volumes: | |
- ${ConfigRootPath:?err}/sabnzbd:/config | |
- ${DownloadsPath:?err}:/downloads | |
healthcheck: | |
test: curl -s -k --fail http://localhost:6799 || exit 1 | |
interval: 60s | |
timeout: 30s | |
retries: 5 | |
<<: [*dependsOnVPN, *commonOptions] | |
indexer: | |
container_name: indexer | |
image: lscr.io/linuxserver/prowlarr:latest | |
environment: | |
<<: *defaultEnvironment | |
volumes: | |
- ${ConfigRootPath:?err}/prowlarr:/config | |
networks: | |
proxy-network: | |
ports: | |
- ${IndexerPort:?err}:9696 | |
depends_on: | |
movies: | |
condition: service_started | |
tv: | |
condition: service_started | |
<<: [*dnsServers, *commonOptions] | |
movies: | |
container_name: movies | |
image: lscr.io/linuxserver/radarr:latest | |
environment: | |
<<: *defaultEnvironment | |
volumes: | |
- ${ConfigRootPath:?err}/radarr:/config | |
- ${MoviesPath:?err}:/movies | |
- ${DownloadsPath:?err}:/downloads | |
networks: | |
proxy-network: | |
ports: | |
- ${MoviesPort:?err}:7878 | |
depends_on: | |
torrents: | |
condition: service_healthy | |
newsgroups: | |
condition: service_healthy | |
<<: [*dnsServers, *commonOptions] | |
tv: | |
container_name: tv | |
image: lscr.io/linuxserver/sonarr:latest | |
environment: | |
<<: *defaultEnvironment | |
volumes: | |
- ${ConfigRootPath:?err}/sonarr:/config | |
- ${TVPath:?err}:/tv | |
- ${DownloadsPath:?err}:/downloads | |
networks: | |
proxy-network: | |
ports: | |
- ${TVPort:?err}:8989 | |
depends_on: | |
torrents: | |
condition: service_healthy | |
newsgroups: | |
condition: service_healthy | |
<<: [*dnsServers, *commonOptions] | |
music: | |
container_name: music | |
image: lscr.io/linuxserver/lidarr:latest | |
environment: | |
<<: *defaultEnvironment | |
volumes: | |
- ${ConfigRootPath}/lidarr:/config | |
- ${MusicPath:?err}:/music | |
- ${DownloadsPath:?err}:/downloads | |
networks: | |
proxy-network: | |
ports: | |
- ${MusicPort:?err}:8686 | |
depends_on: | |
torrents: | |
condition: service_healthy | |
newsgroups: | |
condition: service_healthy | |
<<: [*dnsServers, *commonOptions] | |
books: | |
container_name: books | |
image: ghcr.io/hotio/readarr | |
environment: | |
<<: *defaultEnvironment | |
volumes: | |
- ${ConfigRootPath}/readarr:/config | |
- ${LearningPath}:/learning | |
- ${DownloadsPath}:/downloads | |
networks: | |
proxy-network: | |
ports: | |
- ${BooksPort:?err}:8787 | |
depends_on: | |
torrents: | |
condition: service_healthy | |
newsgroups: | |
condition: service_healthy | |
<<: [*dnsServers, *commonOptions] | |
xxx: | |
container_name: xxx | |
image: ghcr.io/hotio/whisparr | |
environment: | |
<<: *defaultEnvironment | |
volumes: | |
- ${ConfigRootPath}/whisparr:/config | |
- ${XXXPath}:/xxx | |
- ${DownloadsPath}:/downloads | |
networks: | |
proxy-network: | |
ports: | |
- ${XXXPort:?err}:6969 | |
depends_on: | |
torrents: | |
condition: service_healthy | |
newsgroups: | |
condition: service_healthy | |
<<: [*dnsServers, *commonOptions] | |
# profiles: | |
# - ignore | |
organizer: | |
container_name: organizer | |
image: organizr/organizr | |
environment: | |
<<: *defaultEnvironment | |
volumes: | |
- ${ConfigRootPath}/organizr:/config | |
networks: | |
proxy-network: | |
ports: | |
- ${OrganizerPort:?err}:80 | |
depends_on: | |
movies: | |
condition: service_started | |
tv: | |
condition: service_started | |
<<: [*dnsServers, *commonOptions] | |
requests: | |
container_name: requests | |
image: sctx/overseerr:latest | |
environment: | |
<<: *defaultEnvironment | |
volumes: | |
- ${ConfigRootPath:?err}/overseerr:/app/config | |
networks: | |
proxy-network: | |
ports: | |
- ${RequestsPort:?err}:5055 | |
depends_on: | |
movies: | |
condition: service_started | |
tv: | |
condition: service_started | |
<<: [*dnsServers, *commonOptions] | |
subtitles: | |
container_name: subtitles | |
image: ghcr.io/hotio/bazarr | |
environment: | |
<<: *defaultEnvironment | |
volumes: | |
- ${ConfigRootPath:?err}/bazarr:/config | |
- ${DownloadsPath:?err}:/downloads | |
#networks: | |
# proxy-network: | |
<<: [*dependsOnVPN, *commonOptions] | |
flaresolverr: | |
container_name: flaresolverr | |
image: ghcr.io/flaresolverr/flaresolverr:latest | |
environment: | |
<<: *defaultEnvironment | |
LOG_LEVEL: info | |
LOG_HTML: false | |
networks: | |
proxy-network: | |
ports: | |
- ${FlareSolverrPort}:8191 | |
<<: [*dnsServers, *commonOptions] | |
unpacker: | |
container_name: unpacker | |
image: ghcr.io/hotio/unpackerr | |
environment: | |
<<: *defaultEnvironment | |
# Documentation on all Environment Variables can be found at: | |
# https://github.com/davidnewhall/unpackerr#docker-env-variables | |
UN_DEBUG: false | |
UN_LOG_FILE: | |
UN_LOG_FILES: 10 | |
UN_LOG_FILE_MB: 10 | |
UN_INTERVAL: 2m | |
UN_START_DELAY: 1m | |
UN_RETRY_DELAY: 5m | |
UN_MAX_RETRIES: 3 | |
UN_PARALLEL: 1 | |
UN_FILE_MODE: 0664 | |
UN_DIR_MODE: 0775 | |
# Sonarr Config | |
UN_SONARR_0_URL: http://tv:8989 | |
UN_SONARR_0_API_KEY: ${SonarrAPIKey} | |
UN_SONARR_0_PATHS_0: /downloads/TV | |
UN_SONARR_0_PROTOCOLS: torrent | |
UN_SONARR_0_TIMEOUT: 10s | |
UN_SONARR_0_DELETE_ORIG: false | |
UN_SONARR_0_DELETE_DELAY: 5m | |
# Radarr Config | |
UN_RADARR_0_URL: http://movies:7878 | |
UN_RADARR_0_API_KEY: ${RadarrAPIKey} | |
UN_RADARR_0_PATHS_0: /downloads/Movies | |
UN_RADARR_0_PROTOCOLS: torrent | |
UN_RADARR_0_TIMEOUT: 10s | |
UN_RADARR_0_DELETE_ORIG: false | |
UN_RADARR_0_DELETE_DELAY: 5m | |
# Lidarr Config | |
UN_LIDARR_0_URL: http://music:8686 | |
UN_LIDARR_0_API_KEY: ${LidarrAPIKey} | |
UN_LIDARR_0_PATHS_0: /downloads/Music | |
UN_LIDARR_0_PROTOCOLS: torrent | |
UN_LIDARR_0_TIMEOUT: 10s | |
UN_LIDARR_0_DELETE_ORIG: false | |
UN_LIDARR_0_DELETE_DELAY: 5m | |
# Readarr Config | |
UN_READARR_0_URL: http://books:8787 | |
UN_READARR_0_API_KEY: ${ReadarrAPIKey} | |
UN_READARR_0_PATHS_0: /downloads/Books | |
UN_READARR_0_PROTOCOLS: torrent | |
UN_READARR_0_TIMEOUT: 10s | |
UN_READARR_0_DELETE_ORIG: false | |
UN_READARR_0_DELETE_DELAY: 5m | |
volumes: | |
- ${ConfigRootPath:?err}/unpackerr:/config | |
- ${DownloadsPath:?err}:/downloads | |
security_opt: | |
- no-new-privileges:true | |
networks: | |
proxy-network: | |
depends_on: | |
movies: | |
condition: service_started | |
tv: | |
condition: service_started | |
<<: [*dnsServers, *commonOptions] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment