From 48bb5c75c6e31e4bddb8b421d15095d8bf963952 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E9=9B=B7?= <284428564@QQ.com> Date: Tue, 21 May 2024 17:14:09 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- telpo_push_position_run.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/telpo_push_position_run.sh b/telpo_push_position_run.sh index 0eb60d4..270e06f 100644 --- a/telpo_push_position_run.sh +++ b/telpo_push_position_run.sh @@ -4,23 +4,23 @@ version=$2 echo "环境变量为${environment},版本为$version!" if [[ ${environment} == 'production' ]]; then echo "开始远程构建容器" - docker stop telpo_push_third_ssl || true - docker rm telpo_push_third_ssl || true - docker rmi -f $(docker images | grep registry.cn-shanghai.aliyuncs.com/gps_card/telpo_push_third_ssl | awk '{print $3}') + docker stop telpo_push_position || true + docker rm telpo_push_position || true + docker rmi -f $(docker images | grep registry.cn-shanghai.aliyuncs.com/gps_card/telpo_push_position | awk '{print $3}') docker login --username=rzl_wangjx@1111649216405698 --password=telpo.123 registry.cn-shanghai.aliyuncs.com - docker pull registry.cn-shanghai.aliyuncs.com/gps_card/telpo_push_third_ssl:$version - docker run -d --network=host -e environment=production -v /home/data/telpo_push_third_ssl/log:/var/telpo_pushthird_ssl/logs --restart=always --name telpo_push_third_ssl registry.cn-shanghai.aliyuncs.com/gps_card/telpo_push_third_ssl:$version; + docker pull registry.cn-shanghai.aliyuncs.com/gps_card/telpo_push_position:$version + docker run -d --network=host -e environment=production -v /home/data/telpo_push_position/log:/var/telpo_pushposition/logs --restart=always --name telpo_push_position registry.cn-shanghai.aliyuncs.com/gps_card/telpo_push_position:$version; #删除产生的None镜像 docker rmi -f $(docker images | grep none | awk '{print $3}') docker ps -a elif [[ ${environment} == 'test' ]]; then echo "开始在测试环境远程构建容器" - docker stop telpo_push_third_ssl || true - docker rm telpo_push_third_ssl || true - docker rmi -f $(docker images | grep 139.224.254.18:5000/telpo_push_third_ssl | awk '{print $3}') - docker pull 139.224.254.18:5000/telpo_push_third_ssl:$version - docker run -d --network=host -e environment=${environment} -v /home/data/telpo_push_third_ssl/log:/var/telpo_pushthird_ssl/logs --restart=always --name telpo_push_third_ssl 139.224.254.18:5000/telpo_push_third_ssl:$version; + docker stop telpo_push_position || true + docker rm telpo_push_position || true + docker rmi -f $(docker images | grep 139.224.254.18:5000/telpo_push_position | awk '{print $3}') + docker pull 139.224.254.18:5000/telpo_push_position:$version + docker run -d --network=host -e environment=${environment} -v /home/data/telpo_push_position/log:/var/telpo_pushposition/logs --restart=always --name telpo_push_position 139.224.254.18:5000/telpo_push_position:$version; #删除产生的None镜像 docker rmi -f $(docker images | grep none | awk '{print $3}') docker ps -a