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.

17 lines
732B

  1. #!/usr/bin/env bash
  2. image_version=$version
  3. # 删除镜像
  4. docker rmi -f $(
  5. docker images | grep 139.224.254.18:5000/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 tag telpo/health_monitor:$image_version 139.224.254.18:5000/health_monitor:$image_version
  12. docker push 139.224.254.18:5000/health_monitor:$image_version
  13. echo '=================推送镜像完成======================='
  14. #删除产生的None镜像
  15. docker rmi -f $(docker images | grep none | awk '{print $3}')
  16. # 查看镜像列表
  17. docker images