Jellyfin

Jellyfin

简介

Jellyfin 是一个开源的媒体解决方案。

容器安装

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: '3.5'
services:
jellyfin:
image: nyanmisaka/jellyfin:latest
container_name: jellyfin
user: <uid:gid>
network_mode: 'host'
volumes:
- /path/to/config:/config
- /path/to/cache:/cache
- /path/to/media:/media
- /path/to/media2:/media2:ro
restart: 'unless-stopped'
# Optional - alternative address used for autodiscovery
environment:
- 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"

参考资料

官方网站

官方项目

中文整合版容器


Jellyfin
https://wangqian0306.github.io/2023/jellyfin/
作者
WangQian
发布于
2023年7月6日
许可协议