diff --git a/BREEZE.rst b/BREEZE.rst index 5b23c84f1f4d8..0d9c463d7ef40 100644 --- a/BREEZE.rst +++ b/BREEZE.rst @@ -1256,6 +1256,10 @@ This is the current syntax for `./breeze <./breeze>`_: Build options: + --disable-mysql-client-installation + Disables installation of the mysql client which might be problematic if you are building + image in controlled environment. Only valid for production image. + --disable-mysql-client-installation Disables installation of the mysql client which might be problematic if you are building image in controlled environment. Only valid for production image. @@ -1744,6 +1748,10 @@ This is the current syntax for `./breeze <./breeze>`_: Build options: + --disable-mysql-client-installation + Disables installation of the mysql client which might be problematic if you are building + image in controlled environment. Only valid for production image. + --disable-mysql-client-installation Disables installation of the mysql client which might be problematic if you are building image in controlled environment. Only valid for production image. @@ -2095,6 +2103,10 @@ This is the current syntax for `./breeze <./breeze>`_: Build options: + --disable-mysql-client-installation + Disables installation of the mysql client which might be problematic if you are building + image in controlled environment. Only valid for production image. + --disable-mysql-client-installation Disables installation of the mysql client which might be problematic if you are building image in controlled environment. Only valid for production image. diff --git a/breeze b/breeze index 63471d0d71d45..15fee55a5d044 100755 --- a/breeze +++ b/breeze @@ -1010,6 +1010,11 @@ function breeze::parse_arguments() { echo "Tag to add to the image: ${IMAGE_TAG}" shift 2 ;; + --disable-mysql-client-installation) + export INSTALL_MYSQL_CLIENT="false" + echo "Install MySQL client: ${INSTALL_MYSQL_CLIENT}" + shift + ;; -D | --dockerhub-user) export DOCKERHUB_USER="${2}" echo "Dockerhub user ${DOCKERHUB_USER}" @@ -2220,6 +2225,10 @@ ${FORMATTED_DEFAULT_PROD_EXTRAS} Build options: +--disable-mysql-client-installation + Disables installation of the mysql client which might be problematic if you are building + image in controlled environment. Only valid for production image. + --disable-mysql-client-installation Disables installation of the mysql client which might be problematic if you are building image in controlled environment. Only valid for production image.