File tree 1 file changed +58
-2
lines changed
1 file changed +58
-2
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,6 @@ services:
34
34
cadvisor :
35
35
image : gcr.io/cadvisor/cadvisor:v0.50.0
36
36
container_name : cadvisor
37
- # ports:
38
- # - 8080:8080
39
37
volumes :
40
38
- /:/rootfs:ro
41
39
- /run:/run:ro
@@ -47,5 +45,63 @@ services:
47
45
privileged : true
48
46
restart : unless-stopped
49
47
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
+
50
106
volumes :
51
107
prom_data:
You can’t perform that action at this time.
0 commit comments