├── .gitignore ├── .vs └── unraidtemplates │ └── v17 │ └── .suo ├── EmbyServer_Unlock.xml ├── README.md └── icon.png /.gitignore: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # 此 .gitignore 文件已由 Microsoft(R) Visual Studio 自动创建。 3 | ################################################################################ 4 | 5 | *.json 6 | *.sqlite 7 | -------------------------------------------------------------------------------- /.vs/unraidtemplates/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiawei/unraidtemplates/928b1d1386b525258f5a7819c55e7b33ef2ca1fa/.vs/unraidtemplates/v17/.suo -------------------------------------------------------------------------------- /EmbyServer_Unlock.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | EmbyServer_Unlock 4 | xinjiawei1/emby_unlockd:beta 5 | https://hub.docker.com/r/xinjiawei1/emby_unlockd 6 | bridge 7 | 8 | sh 9 | false 10 | 11 | 12 | 一些不需要的参数请手动删除. 13 | 一些参数需要根据你的实际系统环境进行更改. 14 | 15 | 博客: https://crackemby.mb6.top/ 16 | 补丁文件网盘: https://cf.mb6.top/tmp/?dir=emby 17 | MediaServer:Video MediaServer:Music MediaServer:Photos 18 | http://[IP]:[PORT:8096]/ 19 | 20 | https://sf.mb6.top/tmp/emby/logoicon.png 21 | --gpus all 22 | 23 | 24 | 1729176174 25 | 26 | 27 | 28 | 8096 29 | 8920 30 | 7359 31 | 1900 32 | /mnt 33 | 0 34 | 0 35 | 18 36 | http://10.168.1.192:10810 37 | http://10.168.1.192:10810 38 | GPU-10dae734-695e-49db-e322-d3d3d5e2abe9 39 | all 40 | /dev/dri 41 | /mnt/user/appdata/EmbyServer_Unlock 42 | 43 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # My Unraid Templates 2 | > 目前unraid模板有个好处是之后可以一键更新版本. 3 | ## 用法 4 | > 6.10.* 以上版本重新开启模板, 方法来源于 https://github.com/shuosiw/unraid 改进了一些 5 | ### Unraid 6.10.x 以上版本 6 | 7 | Unraid 6.10 版本开始已经去掉模版仓库功能,详见:[UNRAID OS VERSION 6.10.0-RC1 AVAILABLE](https://forums.unraid.net/bug-reports/prereleases/unraid-os-version-6100-rc1-available-r1514/?tab=comments#comment-15110) 8 | 9 | > If you're one of the (very rare) users who still leverages the Template Repositories section, this has been entirely removed 10 | 11 | 针对 6.10.x 版本,可通过以下方式使用: 12 | 13 | 1. 打开 Unraid 终端,执行以下命令: 14 | 15 | ``` 16 | mkdir -p /boot/config/plugins/dockerMan/templates && cd /boot/config/plugins/dockerMan/templates && wget -qO- https://github.com/xinjiawei/unraidtemplates/releases/download/1.2/unraidtemplates-master.tar.gz | tar -zxf - ; 17 | ``` 18 | 19 | 2. 刷新 Unraid 管理后台浏览器页面(比如 Windows 按 F5 刷新) 20 | 3. 参考下方**添加容器**来使用,导入的模版会存在于 `Default templates` 分类中 21 | 22 | 23 | ### unraid 6.9.x 及以下版本添加模板库 24 | 25 | 打开 unraid 的 docker 页面: 26 | 27 | 1. 将本仓库地址 https://github.com/xinjiawei/unraidtemplates 填入 **Template repositories** 28 | 2. 点击 **SAVE** 保存,unraid 会自动拉取模板库并刷新页面 29 | 30 | ### 添加容器 31 | 32 | 在 Unraid 自动刷新页面之后,点击 **ADD CONTAINER** 添加容器 33 | 34 | ## 介绍 35 | ### emby_unLockd 36 | 详情见博客 https://crackemby.mb6.top/ 37 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinjiawei/unraidtemplates/928b1d1386b525258f5a7819c55e7b33ef2ca1fa/icon.png --------------------------------------------------------------------------------