- ###
- # @Author: JinxuChen
- # @Date: 2021-11-15
- # @LastEditTime: 2022-08-12 14:21:45
- # @LastEditors: JinxChen
- # @Description: In User Settings Edit
- # @FilePath: \TelpoUserManageAdmin\setup_test.sh
- ###
- #!/usr/bin/env bash
- npm -v
- npm config set registry https://registry.npm.taobao.org
- npm config list
- npm install
- npm run build-test
-
- image_version=$version
- # 删除镜像
- docker rmi -f $(
- docker images | grep 139.224.254.18:5000/telpo_user_admin | awk '{print $3}'
- )
- # 构建telpo_user_admin:$image_version镜像
- docker build . -t telpo/telpo_user_admin:$image_version;
- #TODO:推送镜像到私有仓库
- echo '=================开始推送镜像======================='
- docker tag telpo/telpo_user_admin:$image_version 139.224.254.18:5000/telpo_user_admin:$image_version
- docker push 139.224.254.18:5000/telpo_user_admin:$image_version
- echo '=================推送镜像完成======================='
- #删除产生的None镜像
- docker rmi -f $(docker images | grep none | awk '{print $3}')
- # 查看镜像列表
- docker images
|