在基于上文 Docker 部署 wordpress 的基础上,可以通过 nginx 添加其他的服务,该 netease-api 既是依此想法做的。
1.下载 apinetease 镜像
docker run -d --net nginx --name apinetease -e VIRTUAL_HOST=你的域名 -e LETSENCRYPT_HOST=你的域名 ftlian/apinetease
2.修改 apinetease 镜像中的部分文件
docker exec -it apinetease /bin/bash
修改 index.php
define('API_URI', 'https://api.ftlsama.ml/'),将域名改为自己的域名。
修改 public/index.html
将文件中的域名换成自己的域名
3.重启apinetease服务
退出apinetease容器命令行页面
exit
重启apinetease容器
docker restart apinetease
Comments NOTHING