📢 上游源码项目已更改为 sqzw-x/mdcx。
👉🏻 如果您当前使用的是20231014
或之前的版本,请阅读 更改新源码后的更新说明。
「builtin」表示内置已编译的应用,不需要额外下载安装包。 「src」表示使用应用的python源码运行,需要额外下载源码。
「gui」是最简单的版本,通过Web访问,且只能看到应用窗口。 「webtop」有比较完整的桌面环境,可以通过Web访问或RDP访问。
镜像 | 部署说明 | 网页查看 | 远程桌面 | 文件管理 | 浏览器 |
---|---|---|---|---|---|
mdcx-builtin-gui-base | 查看 | ✅ | |||
mdcx-builtin-webtop-base | 查看 | ✅ | ✅ | ✅ | ✅ |
mdcx-src-gui-base | 查看 | ✅ | |||
mdcx-src-webtop-base | 查看 | ✅ | ✅ | ✅ | ✅ |
复制以下命令到终端运行,根据提示输入几个参数即可完成部署。
使用curl:
bash -c "$(curl -fsSL https://raw.githubusercontent.com/northsea4/mdcx-docker/main/install.sh)"
使用wget:
bash -c "$(wget https://raw.githubusercontent.com/northsea4/mdcx-docker/main/install.sh -O -)"
# 选一个合适的目录
MDCX_DOCKER_DIR=/path/to/mdcx-docker
mkdir -p $MDCX_DOCKER_DIR && cd $MDCX_DOCKER_DIR
# 必须:相关数据或日志目录
mkdir -p mdcx-config logs data
# 必须:配置文件目录标记文件
echo "/mdcx-config/config.ini" > mdcx-config/MDCx.config
# 确保有config.ini文件
touch mdcx-config/config.ini
docker run -d --name mdcx \
-p 5800:5800 `#Web访问端口` \
-p 5900:5900 \
-v $(pwd)/data:/config `#容器系统数据` \
-v $(pwd)/mdcx-config:/mdcx-config `#配置文件目录` \
-v $(pwd)/mdcx-config/MDCx.config:/app/MDCx.config `#配置文件目录标记文件` \
-v $(pwd)/logs:/app/Log `#日志目录` \
-v /volume2:/volume2 `#影片目录` \
-e TZ=Asia/Shanghai \
-e DISPLAY_WIDTH=1200 \
-e DISPLAY_HEIGHT=750 \
-e VNC_PASSWORD= `#查看密码` \
-e USER_ID=$(id -u) `#运行应用的用户ID` \
-e GROUP_ID=$(id -g) `#运行应用的用户组ID` \
--restart unless-stopped \
stainless403/mdcx-builtin-gui-base:latest
浏览器访问 http://192.168.1.100:5800 使用。
MDCX_DOCKER_DIR=/path/to/mdcx-docker
mkdir -p $MDCX_DOCKER_DIR && cd $MDCX_DOCKER_DIR
# 必须:相关数据或日志目录
mkdir -p mdcx-config logs data
# 必须:配置文件目录标记文件
echo "/mdcx-config/config.ini" > mdcx-config/MDCx.config
# 确保有config.ini文件
touch mdcx-config/config.ini
docker run -d --name mdcx \
-p 3000:3000 `#Web访问端口` \
-p 3389:3389 `#RDP访问端口` \
-v $(pwd)/data:/config `#容器系统数据` \
-v $(pwd)/mdcx-config:/mdcx-config `#配置文件目录` \
-v $(pwd)/mdcx-config/MDCx.config:/app/MDCx.config `#配置文件目录标记文件` \
-v $(pwd)/logs:/app/Log `#日志目录` \
-v /volume2:/volume2 `#影片目录` \
-e TZ=Asia/Shanghai \
-e AUTO_LOGIN=false `#使用默认密码(abc),且通过网页访问时,是否自动登录` \
-e PUID=$(id -u) `#运行应用的用户ID` \
-e PGID=$(id -g) `#运行应用的用户组ID` \
--restart unless-stopped \
stainless403/mdcx-builtin-webtop-base:latest
- 使用
Windows远程桌面
或Microsoft Remote Desktop
连接192.168.1.100:3389
使用,账号密码abc/abc
。 - 浏览器访问 http://192.168.1.100:3000 使用。
如果有公网访问的需求,请自行设置好访问密码(不要使用默认密码)。
镜像 | 默认 | 方式1 |
---|---|---|
mdcx-builtin-gui-base mdcx-src-gui-base |
空 | 设置环境变量VNC_PASSWORD |
mdcx-builtin-webtop-base mdcx-src-webtop-base |
abc/abc | docker exec -it 容器名称 passwd abc 或进入桌面使用命令行工具执行 passwd abc |
当你查阅、下载了本项目源代码或二进制程序,即代表你接受了以下条款:
- 本项目和项目成果仅供技术,学术交流和docker测试使用
- 本项目贡献者编写该项目旨在学习docker和python应用在linux平台上的打包处理
- 用户在使用本项目和项目成果前,请用户了解并遵守当地法律法规,如果本项目及项目成果使用过程中存在违反当地法律法规的行为,请勿使用该项目及项目成果
- 法律后果及使用后果由使用者承担
- GPL LICENSE
- 若用户不同意上述条款任意一条,请勿使用本项目和项目成果
请查看 更新日志
请查看 FAQ
- 一键脚本github镜像加速