mirror of
https://github.com/onedr0p/exportarr.git
synced 2026-02-06 10:57:32 +00:00
The example only uses a single underscore, but the parser expects two to create a `prowlarr.backfill` option.
97 lines
2.5 KiB
YAML
97 lines
2.5 KiB
YAML
---
|
|
version: "3.7"
|
|
services:
|
|
sonarr-exporter:
|
|
image: ghcr.io/onedr0p/exportarr:v2.0
|
|
container_name: sonarr-exporter
|
|
command: ["sonarr"]
|
|
environment:
|
|
PORT: 9707
|
|
URL: "http://x.x.x.x:8989" # or; http://sonarr:8989
|
|
APIKEY: "xxx"
|
|
# networks:
|
|
# - your_custom_network # optional
|
|
ports:
|
|
- "9707:9707"
|
|
restart: unless-stopped
|
|
radarr-exporter:
|
|
image: ghcr.io/onedr0p/exportarr:v2.0
|
|
container_name: radarr-exporter
|
|
command: ["radarr"]
|
|
environment:
|
|
PORT: 9708
|
|
URL: "http://x.x.x.x:7878" # or; http://radarr:7878
|
|
APIKEY: "xxx"
|
|
# networks:
|
|
# - your_custom_network # optional
|
|
ports:
|
|
- "9708:9708"
|
|
restart: unless-stopped
|
|
lidarr-exporter:
|
|
image: ghcr.io/onedr0p/exportarr:v2.0
|
|
container_name: lidarr-exporter
|
|
command: ["lidarr"]
|
|
environment:
|
|
PORT: 9709
|
|
URL: "http://x.x.x.x:8686" # or; http://lidarr:8686
|
|
APIKEY: "xxx"
|
|
# networks:
|
|
# - your_custom_network # optional
|
|
ports:
|
|
- "9709:9709"
|
|
restart: unless-stopped
|
|
prowlarr-exporter:
|
|
image: ghcr.io/onedr0p/exportarr:v2.0
|
|
container_name: prowlarr-exporter
|
|
command: ["prowlarr"]
|
|
environment:
|
|
PORT: 9710
|
|
URL: "http://x.x.x.x:9696" # or; http://prowlarr:8080
|
|
APIKEY: "abc"
|
|
# PROWLARR__BACKFILL: true # optional
|
|
# PROWLARR__BACKFILL_SINCE_DATE: "2023-03-01" # optional
|
|
# networks:
|
|
# - your_custom_network # optional
|
|
ports:
|
|
- "9710:9710"
|
|
restart: unless-stopped
|
|
sabnzbd-exporter:
|
|
image: ghcr.io/onedr0p/exportarr:v2.0
|
|
container_name: sabnzbd-exporter
|
|
command: ["sabnzbd"]
|
|
environment:
|
|
PORT: 9711
|
|
URL: "http://x.x.x.x:8080" # or; http://sabnzbd:8080
|
|
APIKEY: "abc"
|
|
# networks:
|
|
# - your_custom_network # optional
|
|
ports:
|
|
- "9711:9711"
|
|
restart: unless-stopped
|
|
bazarr-exporter:
|
|
image: ghcr.io/onedr0p/exportarr:v2.0
|
|
container_name: bazarr-exporter
|
|
command: ["bazarr"]
|
|
environment:
|
|
PORT: 9712
|
|
URL: "http://x.x.x.x:6767" # or; http://bazarr:6767
|
|
APIKEY: "xxx"
|
|
# networks:
|
|
# - your_custom_network # optional
|
|
ports:
|
|
- "9712:9712"
|
|
restart: unless-stopped
|
|
readarr-exporter:
|
|
image: ghcr.io/onedr0p/exportarr:v2.0
|
|
container_name: readarr-exporter
|
|
command: ["readarr"]
|
|
environment:
|
|
PORT: 9713
|
|
URL: "http://x.x.x.x:8787" # or; http://readarr:8787
|
|
APIKEY: "xxx"
|
|
# networks:
|
|
# - your_custom_network # optional
|
|
ports:
|
|
- "9713:9713"
|
|
restart: unless-stopped
|