Express-Restful-Api
- npm install
-
1. npm run test
-
2.浏览器访问:localhost:3003
由于特殊原因,Windows环境下开发完成后,需要在Ubuntu下进行镜像构建。
- 1.制作Dockerfile
FROM lrcdocker/node14-pm2
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install --registry=https://registry.npm.taobao.org
COPY . .
EXPOSE 3003 1433
CMD ["npm", "run", "start"]
- 2.增加.dockerignore文件
node_modules
npm-debug.log
.git
.gitignore
README.md
-
3.将整个项目源文件(除node_modules)上传至Ubuntu的express-restful-api目录
-
4.制作image镜像
cd ./express-restful-api
docker build -t express-restful-api:1.0 .
- 5.运行容器部署
docker run -p 3003:3003 -p 1433:1433 -d --name express-restful-api express-restful-api:1.0
- 6.浏览器访问:localhost:3003
参考链接:把一个 Node.js web 应用程序给 Docker 化
# 指定基础镜像
FROM lrcdocker/node14-pm2-git
# 指定维护者信息
MAINTAINER LRC
# 切换工作目录
WORKDIR /usr/src/app
# 下载项目
RUN git clone https://github.com.cnpmjs.org/gooooooooooooogle/Express-Restful-Api.git
# 切换到项目根目录
WORKDIR /usr/src/app/Express-Restful-Api
# 下载依赖包
RUN npm install --registry=https://registry.npm.taobao.org
# 暴露端口
EXPOSE 3003 1433
# 当容器启动部署项目
CMD ["npm", "run", "start"]
# 指定基础镜像
FROM lrcdocker/node14-pm2-git
# 指定维护者信息
MAINTAINER LRC
# 拷贝初始化文件到容器中
COPY ./initialize.sh /initialize.sh
# 增加可执行权限
RUN chmod +x /initialize.sh
# 暴露端口
EXPOSE 3003 1433
RUN sed -i 's/\r$//' $app/initialize.sh && \
chmod +x $app/initialize.sh
# 当容器启动时部署项目
ENTRYPOINT $app/initialize.sh