目 录CONTENT

文章目录

创建Jellyfin 服务端

ABin
2026-02-20 / 0 评论 / 0 点赞 / 3 阅读 / 0 字

下载镜像

jellyfin/jellyfin

创建容器

docker run -d \ 
--name Jellyfin \ 
-p 8096:8096 \ 
-v /smb/qBittorrent/Downloads:/media \ 
-v /smb/qBittorrent/Downloads:/media \ 
-v /smb/qBittorrent/jellyfin/config:/config \ 
-v /smb/qBittorrent/jellyfin/cache:/cache \ 
--restart=unless-stopped \ 
jellyfin/jellyfin

创建容器(含代理)

docker run -d \
  --name Jellyfin \
  --restart=unless-stopped \
  -p 8096:8096 \
  -v /smb/qBittorrent/Downloads:/media \
  -v /smb/qBittorrent/jellyfin/config:/config \
  -v /smb/qBittorrent/jellyfin/cache:/cache \
  -e http_proxy=http://172.17.0.1:7890 \
  -e https_proxy=http://172.17.0.1:7890 \
  -e HTTP_PROXY=http://172.17.0.1:7890 \
  -e HTTPS_PROXY=http://172.17.0.1:7890 \
  -e NO_PROXY=localhost,127.0.0.1 \
  -e no_proxy=localhost,127.0.0.1 \
  jellyfin/jellyfin:10.11.6

0

评论区