|
|
@@ -2,7 +2,7 @@ |
|
|
|
image_version=$version |
|
|
|
# 删除镜像 |
|
|
|
docker rmi -f $( |
|
|
|
docker images | grep registry.cn-shanghai.aliyuncs.com/health_monitor | awk '{print $3}' |
|
|
|
docker images | grep registry.cn-shanghai.aliyuncs.com/gps_card/health_monitor | awk '{print $3}' |
|
|
|
) |
|
|
|
# 构建telpo/mrp:$image_version镜像 |
|
|
|
docker build -f ./HealthMonitor.WebApi/Dockerfile . -t telpo/health_monitor:$image_version |
|
|
@@ -10,8 +10,8 @@ docker build -f ./HealthMonitor.WebApi/Dockerfile . -t telpo/health_monitor:$ima |
|
|
|
echo '=================开始推送镜像=======================' |
|
|
|
#docker login --username=telpo_linwl@1111649216405698 --password=telpo#1234 registry.cn-shanghai.aliyuncs.com |
|
|
|
docker login --username=rzl_wangjx@1111649216405698 --password=telpo.123 registry.cn-shanghai.aliyuncs.com |
|
|
|
docker tag telpo/health_monitor:$image_version registry.cn-shanghai.aliyuncs.com/health_monitor:$image_version |
|
|
|
docker push registry.cn-shanghai.aliyuncs.com/health_monitor:$image_version |
|
|
|
docker tag telpo/health_monitor:$image_version registry.cn-shanghai.aliyuncs.com/gps_card/health_monitor:$image_version |
|
|
|
docker push registry.cn-shanghai.aliyuncs.com/gps_card/health_monitor:$image_version |
|
|
|
echo '=================推送镜像完成=======================' |
|
|
|
#删除产生的None镜像 |
|
|
|
docker rmi -f $(docker images | grep none | awk '{print $3}') |
|
|
|