1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
services:
# 资源下载器
# qBittorrent: https://hub.docker.com/r/linuxserver/qbittorrent
qbittorrent:
image: linuxserver/qbittorrent:latest
container_name: qbittorrent
hostname: qbittorrent
network_mode: host
restart: unless-stopped
environment:
- PUID=1000 # UserID
- PGID=1000 # GroupID
- TZ=Asia/Shanghai
- WEBUI_PORT=8181
# ports:
# - 8181:8181
# - 56881:56881
# - 56881:56881/udp
volumes:
- ./qbittorrent/config:/config
- /vol1/1000/media:/media # 下载根目录
# 资源索引器(PT)
# Jackett: https://hub.docker.com/r/linuxserver/jackett
# jackett:
# image: linuxserver/jackett:latest
# container_name: jackett
# hostname: jackett
# restart: unless-stopped
# environment:
# - PUID=1000 # UserID
# - PGID=1000 # GroupID
# - TZ=Asia/Shanghai
# - AUTO_UPDATE=true
# ports:
# - 9117:9117
# volumes:
# - ./jackett/config:/config
# 资源索引器(BT)
# Prowlarr: https://hub.docker.com/r/linuxserver/prowlarr
prowlarr:
image: linuxserver/prowlarr:latest
container_name: prowlarr
hostname: prowlarr
restart: unless-stopped
environment:
- PUID=1000 # UserID
- PGID=1000 # GroupID
- TZ=Asia/Shanghai
ports:
- 9696:9696
volumes:
- ./prowlarr/config:/config
# 资源索引器插件(解决 CloudFlare 5秒盾)
# FlareSolverr: https://hub.docker.com/r/flaresolverr/flaresolverr
flaresolverr:
image: flaresolverr/flaresolverr:latest
container_name: flaresolverr
hostname: flaresolverr
restart: unless-stopped
environment:
- TZ=Asia/Shanghai
- LOG_LEVEL=info
# 资源刮削器(电影)
# Radarr: https://hub.docker.com/r/linuxserver/radarr
radarr:
image: linuxserver/radarr:latest
container_name: radarr
hostname: radarr
restart: unless-stopped
environment:
- PUID=1000 # UserID
- PGID=1000 # GroupID
- TZ=Asia/Shanghai
ports:
- 7878:7878
volumes:
- ./radarr/config:/config
- /vol1/1000/media:/media # 影音&下载根目录
# 资源刮削器(电视剧&动漫)
# Sonarr: https://hub.docker.com/r/linuxserver/sonarr
sonarr:
image: linuxserver/sonarr:latest
container_name: sonarr
hostname: sonarr
restart: unless-stopped
environment:
- PUID=1000 # UserID
- PGID=1000 # GroupID
- TZ=Asia/Shanghai
ports:
- 8989:8989
volumes:
- ./sonarr/config:/config
- /vol1/1000/media:/media # 影音&下载根目录
# 资源聚合搜索
# Jellyseerr: https://hub.docker.com/r/fallenbagel/jellyseerr
jellyseerr:
image: fallenbagel/jellyseerr:latest
container_name: jellyseerr
hostname: jellyseerr
restart: unless-stopped
environment:
- TZ=Asia/Shanghai
- LOG_LEVEL=debug
ports:
- 5055:5055
volumes:
- ./jellyseerr/config:/app/config
# 影音库
# Jellyfin: https://hub.docker.com/r/nyanmisaka/jellyfin
jellyfin:
image: nyanmisaka/jellyfin:latest
container_name: jellyfin
hostname: jellyfin
restart: unless-stopped
devices:
- /dev/dri:/dev/dri # 核显硬解
environment:
- TZ=Asia/Shanghai
- HTTP_PROXY=http://192.168.31.3:7890
- HTTPS_PROXY=http://192.168.31.3:7890
ports:
- 8096:8096
volumes:
- ./jellyfin/config:/config
- /vol1/1000/media:/media # 影音根目录
# 字幕刮削器
# ChineseSubFinder: https://hub.docker.com/r/allanpk716/chinesesubfinder
chinesesubfinder:
image: allanpk716/chinesesubfinder:latest
container_name: chinesesubfinder
hostname: chinesesubfinder
restart: unless-stopped
environment:
- PUID=1000 # UserID
- PGID=1000 # GroupID
- TZ=Asia/Shanghai
- PERMS=true
- UMASK=022
ports:
- 19035:19035
- 19037:19037
volumes:
- ./chinesesubfinder/config:/config
- /vol1/1000/media:/media # 影音根目录
networks:
default:
name: media_center
|