You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
1022B

  1. #!/usr/bin/env bash
  2. image_version=$version
  3. # 删除镜像
  4. docker rmi -f $(
  5. docker images | grep registry.cn-shanghai.aliyuncs.com/gps_card/health_monitor | awk '{print $3}'
  6. )
  7. # 构建telpo/mrp:$image_version镜像
  8. docker build -f ./HealthMonitor.WebApi/Dockerfile . -t telpo/health_monitor:$image_version
  9. #TODO:推送镜像到阿里仓库
  10. echo '=================开始推送镜像======================='
  11. #docker login --username=telpo_linwl@1111649216405698 --password=telpo#1234 registry.cn-shanghai.aliyuncs.com
  12. docker login --username=rzl_wangjx@1111649216405698 --password=telpo.123 registry.cn-shanghai.aliyuncs.com
  13. docker tag telpo/health_monitor:$image_version registry.cn-shanghai.aliyuncs.com/gps_card/health_monitor:$image_version
  14. docker push registry.cn-shanghai.aliyuncs.com/gps_card/health_monitor:$image_version
  15. echo '=================推送镜像完成======================='
  16. #删除产生的None镜像
  17. docker rmi -f $(docker images | grep none | awk '{print $3}')
  18. # 查看镜像列表
  19. docker images