build-images.sh 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #!/bin/bash
  2. set -o errexit
  3. set -o nounset
  4. set -o pipefail
  5. STARTTIME=$(date +%s)
  6. source_root=$(dirname "${0}")/..
  7. prefix="openshift/origin-ansible"
  8. version="latest"
  9. verbose=false
  10. options="-f images/installer/Dockerfile"
  11. help=false
  12. for args in "$@"
  13. do
  14. case $args in
  15. --prefix=*)
  16. prefix="${args#*=}"
  17. ;;
  18. --version=*)
  19. version="${args#*=}"
  20. ;;
  21. --no-cache)
  22. options="${options} --no-cache"
  23. ;;
  24. --verbose)
  25. verbose=true
  26. ;;
  27. --help)
  28. help=true
  29. ;;
  30. esac
  31. done
  32. # allow ENV to take precedent over switches
  33. prefix="${PREFIX:-$prefix}"
  34. version="${OS_TAG:-$version}"
  35. if [ "$help" = true ]; then
  36. echo "Builds the docker images for openshift-ansible"
  37. echo
  38. echo "Options: "
  39. echo " --prefix=PREFIX"
  40. echo " The prefix to use for the image names."
  41. echo " default: openshift/origin-ansible"
  42. echo
  43. echo " --version=VERSION"
  44. echo " The version used to tag the image"
  45. echo " default: latest"
  46. echo
  47. echo " --no-cache"
  48. echo " If set will perform the build without a cache."
  49. echo
  50. echo " --verbose"
  51. echo " Enables printing of the commands as they run."
  52. echo
  53. echo " --help"
  54. echo " Prints this help message"
  55. echo
  56. exit 0
  57. fi
  58. if [ "$verbose" = true ]; then
  59. set -x
  60. fi
  61. BUILD_STARTTIME=$(date +%s)
  62. comp_path=$source_root/
  63. docker_tag=${prefix}:${version}
  64. echo
  65. echo
  66. echo "--- Building component '$comp_path' with docker tag '$docker_tag' ---"
  67. docker build ${options} -t $docker_tag $comp_path
  68. BUILD_ENDTIME=$(date +%s); echo "--- $docker_tag took $(($BUILD_ENDTIME - $BUILD_STARTTIME)) seconds ---"
  69. echo
  70. echo
  71. echo
  72. echo
  73. echo "++ Active images"
  74. docker images | grep ${prefix} | grep ${version} | sort
  75. echo
  76. ret=$?; ENDTIME=$(date +%s); echo "$0 took $(($ENDTIME - $STARTTIME)) seconds"; exit "$ret"