7 echo "Starting opnfv-docker for $DOCKER_REPO_NAME ..."
8 echo "--------------------------------------------------------"
12 # Remove previous running containers if exist
13 if [[ -n "$(docker ps -a | grep $DOCKER_REPO_NAME)" ]]; then
14 echo "Removing existing $DOCKER_REPO_NAME containers..."
15 docker ps -a | grep $DOCKER_REPO_NAME | awk '{print $1}' | xargs docker rm -f
17 # Wait max 60 sec for containers to be removed
18 while [[ $t -gt 0 ]] && [[ -n "$(docker ps| grep $DOCKER_REPO_NAME)" ]]; do
25 # Remove existing images if exist
26 if [[ -n "$(docker images | grep $DOCKER_REPO_NAME)" ]]; then
27 echo "Docker images to remove:"
28 docker images | head -1 && docker images | grep $DOCKER_REPO_NAME
29 image_tags=($(docker images | grep $DOCKER_REPO_NAME | awk '{print $2}'))
30 for tag in "${image_tags[@]}"; do
31 if [[ -n "$(docker images|grep $DOCKER_REPO_NAME|grep $tag)" ]]; then
32 echo "Removing docker image $DOCKER_REPO_NAME:$tag..."
33 docker rmi -f $DOCKER_REPO_NAME:$tag
38 # If we just want to update the latest_stable image
39 if [[ "$UPDATE_LATEST_STABLE" == "true" ]]; then
40 echo "Pulling $DOCKER_REPO_NAME:$STABLE_TAG ..."
41 docker pull $DOCKER_REPO_NAME:$STABLE_TAG
42 if [[ $? -ne 0 ]]; then
43 echo "ERROR: The image $DOCKER_REPO_NAME with tag $STABLE_TAG does not exist."
46 docker tag -f $DOCKER_REPO_NAME:$STABLE_TAG $DOCKER_REPO_NAME:latest_stable
47 echo "Pushing $DOCKER_REPO_NAME:latest_stable ..."
48 docker push $DOCKER_REPO_NAME:latest_stable
53 # cd to directory where Dockerfile is located
54 if [[ "$DOCKER_REPO_NAME" == "opnfv/functest" ]]; then
56 elif [[ "$DOCKER_REPO_NAME" == "opnfv/yardstick" ]]; then
57 cd $WORKSPACE/ci/docker/yardstick-ci
58 elif [[ "$DOCKER_REPO_NAME" == "opnfv/storperf" ]]; then
60 elif [[ "$DOCKER_REPO_NAME" == "opnfv/qtip" ]]; then
63 echo "ERROR: DOCKER_REPO_NAME parameter not valid: $DOCKER_REPO_NAME"
68 branch="${GIT_BRANCH##origin/}"
69 echo "Current branch: $branch"
71 if [[ "$branch" == "master" ]]; then
74 git clone https://gerrit.opnfv.org/gerrit/releng $WORKSPACE/releng
76 DOCKER_TAG=$($WORKSPACE/releng/utils/calculate_version.sh -t docker \
80 if [[ $ret_val -ne 0 ]]; then
81 echo "Error retrieving the version tag."
85 echo "Tag version to be build and pushed: $DOCKER_TAG"
89 echo "Building docker image: $DOCKER_REPO_NAME:$DOCKER_TAG..."
91 docker build --no-cache -t $DOCKER_REPO_NAME:$DOCKER_TAG .
92 echo "Creating tag 'latest'..."
93 docker tag $DOCKER_REPO_NAME:$DOCKER_TAG $DOCKER_REPO_NAME:latest
96 echo "Available images are:"
99 # Push image to Dockerhub
100 if [[ "$PUSH_IMAGE" == "true" ]]; then
101 echo "Pushing $DOCKER_REPO_NAME:$DOCKER_TAG to the docker registry..."
102 echo "--------------------------------------------------------"
104 # Push to the Dockerhub repository
105 docker push $DOCKER_REPO_NAME:$DOCKER_TAG
107 echo "Updating $DOCKER_REPO_NAME:latest to the docker registry..."
108 docker push $DOCKER_REPO_NAME:latest