之前发过关于这个镜像的帖子,那时候镜像没有上传到镜像仓库。现在更新了版本,镜像也上传到了阿里云
镜像
镜像位于国内,在华为云或阿里云,方便拉取。
镜像内部端口说明
9260
HTTP访问端口
9460
HTTPS访问端口
如果要自定义证书,建立证书目录ssl,
在里面建立证书文件cert.pem,私钥文件cert.key,
将证书目录映射到容器内部的证书目录/ssl
镜像是我(汉化)制作的,欢迎关注我B站账号 秦曱凧 后面有新的项目,会在B站先发(秦曱凧 读作 qín yuē zhēng)
视频教程
原项目地址 https://github.com/remvze/moodist
我汉化和构建docker镜像的代码仓库地址 https://github.com/Firfr/moodist-zh-cn
欢迎start
有需要帮忙部署这个项目的朋友,一杯奶茶,即可程远程帮你部署,需要可联系。
微信号 E-0_0-
闲鱼搜索用户 明月人间
或者邮箱 firfe163@163.com
镜像地址
crpi-aiy5xfxuied4b3f9.cn-chengdu.personal.cr.aliyuncs.com/firfe/moodist:25.4.6
docker run 部署
docker run -d \
--name moodist-zh \
--network bridge \
--restart always \
--log-opt max-size=1m \
--log-opt max-file=3 \
-p 9260:9260 -p 9460:9460 \
crpi-aiy5xfxuied4b3f9.cn-chengdu.personal.cr.aliyuncs.com/firfe/moodist:25.4.6
compose 文件部署 👍推荐
#version: '3.9'
services:
moodist-zh:
container_name: moodist-zh
image: crpi-aiy5xfxuied4b3f9.cn-chengdu.personal.cr.aliyuncs.com/firfe/moodist:25.4.6
network_mode: bridge
restart: always
logging:
options:
max-size: 1m
max-file: '3'
ports:
- 9260:9260
- 9460:9460
效果图