如题,最近在长期出差的酒店没有ipv6所以想尝试以下fnos自带的内网穿透,试了几个其他服务包括fnos管理界面和ani-rss、qbitorrent都能正常使用,就jellyfin不行,请问有大佬可以帮忙看一下原因嘛,jellyfin的docker-compose长这样:
services:
jellyfin:
image: jellyfin/jellyfin
container_name: jellyfin
# user: uid:gid
# user: 1000:1001
user: 0:0
network_mode: 'host'
# mount GPU
devices:
- /dev/dri:/dev/dri
# add the render group to container
group_add:
- 105
# give highest priority to access GPU
# privileged: true
volumes:
- ./config:/config
- ./cache:/cache
- type: bind
source: /vol2/1000/FNNas1
target: /media
- type: bind
source: /vol1/1000/temp
target: /media2
# Optional - extra fonts to be used during transcoding with subtitle burn-in
- type: bind
source: ./fonts
# target: /usr/local/share/fonts/custom
target: /usr/share/fonts
read_only: true
# Optional - extra fonts to be used during transcoding with subtitle burn-in
- type: bind
source: ./fallback_fonts
target: /fallback_fonts
read_only: true
restart: 'unless-stopped'
# restart: 'always'
# Optional - alternative address used for autodiscovery
environment:
- TZ=Asia/Shanghai
- HTTP_PROXY=http://host.docker.internal:7890
- HTTPS_PROXY=http://host.docker.internal:7890
# - JELLYFIN_PublishedServerUrl=http://example.com
# Optional - may be necessary for docker healthcheck to pass if running in host network mode
extra_hosts:
- 'host.docker.internal:host-gateway'
- 'api.themoviedb.org:18.173.219.85'
- 'api.themoviedb.org:18.173.219.98'
- 'api.themoviedb.org:18.173.219.5'
- 'api.themoviedb.org:18.173.219.124'
- 'image.tmdb.org:185.93.1.242'
- 'api.thetvdb.org:192.241.234.54'
- 'www.themoviedb.org:18.164.124.68'
- 'www.themoviedb.org:18.164.124.119'
- 'www.themoviedb.org:18.164.124.80'
- 'www.themoviedb.org:18.164.124.21'
- 'api.bgm.tv:104.26.9.23'
- 'api.bgm.tv:172.67.73.67'
- 'api.bgm.tv:104.26.8.23'
# 添加jellyfin-danmaku plugin
# entrypoint: sed -i 's#</div></body>#</div><script src=\"https://jellyfin-danmaku.pages.dev/ede.user.js\" defer></script></body>#' /jellyfin/jellyfin-web/index.html && exec /jellyfin/jellyfin
entrypoint: sh -c "sed -i 's#</div></body>#</div><script src=\"https://jellyfin-danmaku.pages.dev/ede.user.js\" defer></script></body>#' /jellyfin/jellyfin-web/index.html && exec /jellyfin/jellyfin"
# entrypoint: ["/bin/bash"]
# tty: true
# stdin_open: true