diff options
author | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-08-17 14:31:23 +0000 |
---|---|---|
committer | HuabingZhao <zhao.huabing@zte.com.cn> | 2017-08-17 14:31:48 +0000 |
commit | 57426fd1ba7b852850e413c3cb4023caf17b982d (patch) | |
tree | 38e2f3e1fd3a9c4b82344441246f5724f6f6ea8b /ci | |
parent | 9b8d7b875dcf54a25bd14783397ad6b9851e4262 (diff) |
Use the ONAP docker registry
Issue-Id: MSB-18
Change-Id: Idf566df2f0a8ca9266fdb6b8d8d82847bb8d050f
Signed-off-by: HuabingZhao <zhao.huabing@zte.com.cn>
Diffstat (limited to 'ci')
-rw-r--r-- | ci/build_docker_image.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/build_docker_image.sh b/ci/build_docker_image.sh index 7b6b546..45ac274 100644 --- a/ci/build_docker_image.sh +++ b/ci/build_docker_image.sh @@ -24,7 +24,7 @@ if [[ ${NAME} && ${VERSION} && ${DIR} ]]; then echo "begin to build image ${NAME}.." docker build --no-cache -t ${NAME}:${VERSION} . >/dev/null || { echo -e "\nBuild docker image failed!";exit 1; } docker rmi $(docker images | grep "^<none>" | awk '{print $3}') &>/dev/null - docker save -o ${NAME}.tar ${NAME}:${VERSION} >/dev/null || { rm -f ${NAME}.tar &>/dev/null;echo -e "\nSave docker image failed!";exit 1; } + # docker save -o ${NAME}.tar ${NAME}:${VERSION} >/dev/null || { rm -f ${NAME}.tar &>/dev/null;echo -e "\nSave docker image failed!";exit 1; } if [ ! -d ${DIR} ]; then mkdir -p ${DIR} fi |