Qwerty-learner[docker]
前置条件已经安装 npm/nginx
1、克隆项目
git clone https://gitee.com/KaiyiWing/qwerty-learner.git
2、进入项目文件夹
cd qwerty-learner
3、获取npm当前源
npm config get registry
4、设置npm源为淘宝源
npm config set registry https://registry.npmmirror.com/
5、创建镜像,镜像名qwerty-learner,Dockerfile位置为当前文件夹,即"."
docker build -t qwerty-learner .
6、检查镜像是否创建成功,创建成功的话输出中会有名为qwerty-learner的镜像
dokcer images
7、 创建容器
docker run -d --name qwerty --restart=always -p 5173:5173 qwerty-learner
8、打开网页:浏览器输入http://localhost:5173