全自动追剧方案
1. 方案一:mp(推荐) 这是目前个人常用的方案,必须配合PT站使用 qbittorrent:下载器 jellyfin:媒体库 moviepilot:一站式管理工具 chinesesubfinder:中文字幕搜索 docker-compose.yml如下: 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 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 # 下载根目录 # - /vol2/1000/media2:/media2 # 下载根目录 # 影音库 # 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 # 影音根目录 # - /vol2/1000/media2:/media2 # 影音根目录 # 影视管理工具 moviepilot: image: jxxghp/moviepilot-v2:latest container_name: moviepilot # 容器的名称 hostname: moviepilot # 容器主机名 restart: unless-stopped stdin_open: true # 是否打开标准输入流(交互模式),为 true 时容器可以保持运行并与用户交互 tty: true # 是否分配伪终端,使容器的终端行为更像一个真实的终端 ports: # 前端 UI 显示 - 3000:3000 # API 接口 - 3001:3001 # 目录映射:宿主机目录:容器内目录 volumes: - /vol1/1000/media:/media # 影音根目录 # - /vol2/1000/media2:/media2 # 影音根目录 - ./moviepilot/config:/config # moviepilot 的配置文件存放路径 - ./moviepilot/core:/moviepilot/.cache/ms-playwright # 浏览器内核存放路径 - /var/run/docker.sock:/var/run/docker.sock:ro # 用于获取宿主机的docker管理权,一般用于UI页面重启或自动更新 environment: - NGINX_PORT=3000 # UI页面的内部监听端口 - PORT=3001 # API接口的内部监听端口 - PUID=1000 # 设置应用运行时的用户 ID 为 0(root 用户) - PGID=1000 # 设置应用运行时的组 ID 为 0(root 组) - UMASK=000 # 文件创建时的默认权限掩码,000 表示不限制权限 - TZ=Asia/Shanghai # 设置时区为上海(Asia/Shanghai) - SUPERUSER=admin # 设置超级用户为 admin - PROXY_HOST=http://192.168.31.3:7890 # 设置代理服务器的主机名或 IP 地址 # 字幕刮削器 # 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 # 影音根目录 # - /vol2/1000/media2:/media2 # 影音根目录 networks: default: name: media_center 2. 方案二:serr 这是一套比较中规中矩的方案,可以仅配合BT站点使用 ...