天波h5前端应用
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.

antpay_frontend_web_run.sh 1.7KB

123456789101112131415161718192021222324252627282930313233343536
  1. #!/bin/bash
  2. ###
  3. # @Date: 2021-11-15 09:37:49
  4. # @LastEditors: JinxChen
  5. # @LastEditTime: 2022-03-04 10:47:47
  6. # @FilePath: \AntpayFrontEnd\antpay_frontend_web_run.sh
  7. # @description: docker部署脚本, 根据项目具体情况来 修改 docker run -p 8804:80
  8. ###
  9. environment=$1
  10. version=$2
  11. echo "环境变量为${environment},版本为$version!"
  12. if [[ ${environment} = 'production' ]]; then
  13. echo "开始远程构建容器"
  14. docker stop antpay_frontend_web || true;
  15. docker rm antpay_frontend_web || true;
  16. docker rmi -f $(docker images | grep registry.cn-shanghai.aliyuncs.com/gps_card/antpay_frontend_web | awk '{print $3}')
  17. #docker login --username=telpo_linwl@1111649216405698 --password=telpo#1234 registry.cn-shanghai.aliyuncs.com;
  18. docker login --username=rzl_wangjx@1111649216405698 --password=telpo.123 registry.cn-shanghai.aliyuncs.com
  19. docker pull registry.cn-shanghai.aliyuncs.com/gps_card/antpay_frontend_web:$version
  20. docker run -p 8804:80 -d --restart=always --name antpay_frontend_web registry.cn-shanghai.aliyuncs.com/gps_card/antpay_frontend_web:$version;
  21. #删除产生的None镜像
  22. docker rmi -f $(docker images | grep none | awk '{print $3}')
  23. docker ps -a
  24. elif [[ ${environment} == 'test' ]]; then
  25. echo "开始在测试环境远程构建容器"
  26. docker stop antpay_frontend_web || true
  27. docker rm antpay_frontend_web || true
  28. docker rmi -f $(docker images | grep 139.224.254.18:5000/antpay_frontend_web | awk '{print $3}')
  29. docker pull 139.224.254.18:5000/antpay_frontend_web:$version
  30. docker run -p 8804:80 -d --restart=always --name antpay_frontend_web 139.224.254.18:5000/antpay_frontend_web:$version;
  31. #删除产生的None镜像
  32. docker rmi -f $(docker images | grep none | awk '{print $3}')
  33. docker ps -a
  34. fi