From de7eecd7eba2ba59b96df0bacd7a2e1c1253f219 Mon Sep 17 00:00:00 2001 From: David Zafman Date: Tue, 1 May 2018 13:59:04 -0700 Subject: [PATCH] script: Fix ceph-debug-docker.sh script create --tag in correct format Signed-off-by: David Zafman --- src/script/ceph-debug-docker.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/script/ceph-debug-docker.sh b/src/script/ceph-debug-docker.sh index b0c1ffc4f5993..083c0ef20c2bc 100755 --- a/src/script/ceph-debug-docker.sh +++ b/src/script/ceph-debug-docker.sh @@ -74,7 +74,7 @@ function main { user="$(whoami)" fi - image="${user}/ceph-ci:${branch}:${sha}-${env/:/-}" + tag="${user}:ceph-ci-${branch}-${sha}-${env/:/-}" T=$(mktemp -d) pushd "$T" @@ -93,9 +93,9 @@ RUN add-apt-repository "\$(wget --quiet -O - https://shaman.ceph.com/api/repos/c apt-get update --yes && \ apt-get install --yes --allow-unauthenticated ceph ceph-osd-dbg ceph-mds-dbg ceph-mgr-dbg ceph-mon-dbg ceph-fuse-dbg ceph-test-dbg radosgw-dbg EOF - time run docker build $CACHE --tag "$image" . + time run docker build $CACHE --tag "$tag" . else # try RHEL flavor - time run docker build $CACHE --tag "$image" - <