能力事件推送(StudyAINotifyStatusUpload)
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

setup_test.sh 756B

il y a 5 mois
1234567891011121314151617
  1. #!/usr/bin/env bash
  2. image_version=$version
  3. # 删除镜像
  4. docker rmi -f $(
  5. docker images | grep 139.224.254.18:5000/telpo_push_ability | awk '{print $3}'
  6. )
  7. # 构建telpo/mrp:$image_version镜像
  8. docker build -f ./TelpoPush.Ability.Worker/Dockerfile . -t telpo/telpo_push_ability:$image_version
  9. #TODO:推送镜像到私有仓库
  10. echo '=================开始推送镜像======================='
  11. docker tag telpo/telpo_push_ability:$image_version 139.224.254.18:5000/telpo_push_ability:$image_version
  12. docker push 139.224.254.18:5000/telpo_push_ability:$image_version
  13. echo '=================推送镜像完成======================='
  14. #删除产生的None镜像
  15. docker rmi -f $(docker images | grep none | awk '{print $3}')
  16. # 查看镜像列表
  17. docker images