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.

29 lines
1.6KB

  1. #!/bin/bash
  2. environment=$1
  3. version=$2
  4. echo "环境变量为${environment},版本为$version!"
  5. if [[ ${environment} == 'production' ]]; then
  6. echo "开始远程构建容器"
  7. docker stop health_monitor || true
  8. docker rm health_monitor || true
  9. docker rmi -f $(docker images | grep registry.cn-shanghai.aliyuncs.com/gps_card/health_monitor | awk '{print $3}')
  10. #docker login --username=telpo_linwl@1111649216405698 --password=telpo#1234 registry.cn-shanghai.aliyuncs.com
  11. docker login --username=rzl_wangjx@1111649216405698 --password=telpo.123 registry.cn-shanghai.aliyuncs.com
  12. docker pull registry.cn-shanghai.aliyuncs.com/gps_card/health_monitor:$version
  13. docker run --network=host -d -v /home/data/health_monitor/log:/var/health_monitor/logs --restart=always -e FirstEP=172.19.42.48:6030 -e environment=production --name health_monitor registry.cn-shanghai.aliyuncs.com/gps_card/health_monitor:$version;
  14. #删除产生的None镜像
  15. docker rmi -f $(docker images | grep none | awk '{print $3}')
  16. docker ps -a
  17. elif [[ ${environment} == 'test' || ${environment} == 'presure' ]]; then
  18. echo "开始在测试环境远程构建容器"
  19. docker stop health_monitor || true
  20. docker rm health_monitor || true
  21. docker rmi -f $(docker images | grep 139.224.254.18:5000/health_monitor | awk '{print $3}')
  22. docker pull 139.224.254.18:5000/health_monitor:$version
  23. docker run --network=host -d -v /home/data/health_monitor/log:/var/health_monitor/logs --restart=always -e FirstEP=172.19.42.44:6030 -e environment=test --name health_monitor 139.224.254.18:5000/health_monitor:$version;
  24. #删除产生的None镜像
  25. docker rmi -f $(docker images | grep none | awk '{print $3}')
  26. docker ps -a
  27. fi