From f2a2c5b750208edd0a8a92b171c39b876b03605e Mon Sep 17 00:00:00 2001 From: H Vs Date: Mon, 4 Mar 2024 16:25:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=AD=A3=E5=BC=8F=E7=8E=AF=E5=A2=83=E9=83=A8?= =?UTF-8?q?=E7=BD=B2=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup_production.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 setup_production.sh diff --git a/setup_production.sh b/setup_production.sh new file mode 100644 index 0000000..4005059 --- /dev/null +++ b/setup_production.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash +image_version=$version +# 删除镜像 +docker rmi -f $( + docker images | grep registry.cn-shanghai.aliyuncs.com/gps_card/near_card_attendance | awk '{print $3}' +) +# 构建telpo/mrp:$image_version镜像 +docker build -f ./NearCardAttendance.TcpServer/Dockerfile . -t telpo/near_card_attendance:$image_version +#TODO:推送镜像到私有仓库 +echo '=================开始推送镜像=======================' +docker login --username=rzl_wangjx@1111649216405698 --password=telpo.123 registry.cn-shanghai.aliyuncs.com +docker tag telpo/near_card_attendance:$image_version registry.cn-shanghai.aliyuncs.com/gps_card/near_card_attendance:$image_version +docker push registry.cn-shanghai.aliyuncs.com/gps_card/near_card_attendance:$image_version +echo '=================推送镜像完成=======================' +#删除产生的None镜像 +docker rmi -f $(docker images | grep none | awk '{print $3}') +# 查看镜像列表 +docker images \ No newline at end of file