Skip to content

Commit 788b559

Browse files
committedOct 14, 2024
add arr exporters
1 parent eab33ab commit 788b559

File tree

1 file changed

+58
-2
lines changed

1 file changed

+58
-2
lines changed
 

‎docker/grafana/docker-compose.yml

+58-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ services:
3434
cadvisor:
3535
image: gcr.io/cadvisor/cadvisor:v0.50.0
3636
container_name: cadvisor
37-
# ports:
38-
# - 8080:8080
3937
volumes:
4038
- /:/rootfs:ro
4139
- /run:/run:ro
@@ -47,5 +45,63 @@ services:
4745
privileged: true
4846
restart: unless-stopped
4947

48+
sonarr-exporter:
49+
image: ghcr.io/onedr0p/exportarr:v2.0
50+
container_name: sonarr-exporter
51+
command: ["sonarr"]
52+
environment:
53+
PORT: 9707
54+
URL: $SONARR_URL
55+
APIKEY: $SONARR_API
56+
ports:
57+
- "9707:9707"
58+
restart: unless-stopped
59+
radarr-exporter:
60+
image: ghcr.io/onedr0p/exportarr:v2.0
61+
container_name: radarr-exporter
62+
command: ["radarr"]
63+
environment:
64+
PORT: 9708
65+
URL: $RADARR_URL
66+
APIKEY: $RADARR_API
67+
ports:
68+
- "9708:9708"
69+
restart: unless-stopped
70+
prowlarr-exporter:
71+
image: ghcr.io/onedr0p/exportarr:v2.0
72+
container_name: prowlarr-exporter
73+
command: ["prowlarr"]
74+
environment:
75+
PORT: 9710
76+
URL: $PROWLARR_URL
77+
APIKEY: $PROWLARR_API
78+
PROWLARR__BACKFILL: true
79+
PROWLARR__BACKFILL_SINCE_DATE: "2023-03-01"
80+
ports:
81+
- "9710:9710"
82+
restart: unless-stopped
83+
sabnzbd-exporter:
84+
image: ghcr.io/onedr0p/exportarr:v2.0
85+
container_name: sabnzbd-exporter
86+
command: ["sabnzbd"]
87+
environment:
88+
PORT: 9711
89+
URL: $SAB_URL
90+
APIKEY: $SAB_API
91+
ports:
92+
- "9711:9711"
93+
restart: unless-stopped
94+
bazarr-exporter:
95+
image: ghcr.io/onedr0p/exportarr:v2.0
96+
container_name: bazarr-exporter
97+
command: ["bazarr"]
98+
environment:
99+
PORT: 9712
100+
URL: $BAZARR_URL
101+
APIKEY: $BAZARR_API
102+
ports:
103+
- "9712:9712"
104+
restart: unless-stopped
105+
50106
volumes:
51107
prom_data:

0 commit comments

Comments
 (0)
Please sign in to comment.