5.7.33-debian-10-r47 release
This commit is contained in:
parent
424c3e4638
commit
a7acf27752
|
|
@ -18,7 +18,7 @@ RUN mkdir /docker-entrypoint-initdb.d
|
||||||
COPY rootfs /
|
COPY rootfs /
|
||||||
RUN /opt/bitnami/scripts/mysql/postunpack.sh
|
RUN /opt/bitnami/scripts/mysql/postunpack.sh
|
||||||
ENV BITNAMI_APP_NAME="mysql" \
|
ENV BITNAMI_APP_NAME="mysql" \
|
||||||
BITNAMI_IMAGE_VERSION="5.7.33-debian-10-r46" \
|
BITNAMI_IMAGE_VERSION="5.7.33-debian-10-r47" \
|
||||||
PATH="/opt/bitnami/common/bin:/opt/bitnami/mysql/bin:/opt/bitnami/mysql/sbin:$PATH"
|
PATH="/opt/bitnami/common/bin:/opt/bitnami/mysql/bin:/opt/bitnami/mysql/sbin:$PATH"
|
||||||
|
|
||||||
EXPOSE 3306
|
EXPOSE 3306
|
||||||
|
|
|
||||||
|
|
@ -103,6 +103,8 @@ generate_cron_conf() {
|
||||||
local run_as="root"
|
local run_as="root"
|
||||||
local schedule="* * * * *"
|
local schedule="* * * * *"
|
||||||
|
|
||||||
|
local clean="true"
|
||||||
|
|
||||||
# Parse optional CLI flags
|
# Parse optional CLI flags
|
||||||
shift 2
|
shift 2
|
||||||
while [[ "$#" -gt 0 ]]; do
|
while [[ "$#" -gt 0 ]]; do
|
||||||
|
|
@ -115,6 +117,9 @@ generate_cron_conf() {
|
||||||
shift
|
shift
|
||||||
schedule="$1"
|
schedule="$1"
|
||||||
;;
|
;;
|
||||||
|
--no-clean)
|
||||||
|
clean="false"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Invalid command line flag ${1}" >&2
|
echo "Invalid command line flag ${1}" >&2
|
||||||
return 1
|
return 1
|
||||||
|
|
@ -124,7 +129,11 @@ generate_cron_conf() {
|
||||||
done
|
done
|
||||||
|
|
||||||
mkdir -p /etc/cron.d
|
mkdir -p /etc/cron.d
|
||||||
echo "${schedule} ${run_as} ${cmd}" > /etc/cron.d/"$service_name"
|
if "$clean"; then
|
||||||
|
echo "${schedule} ${run_as} ${cmd}" > /etc/cron.d/"$service_name"
|
||||||
|
else
|
||||||
|
echo "${schedule} ${run_as} ${cmd}" >> /etc/cron.d/"$service_name"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
########################
|
########################
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
||||||
|
|
||||||
|
|
||||||
* [`8.0`, `8.0-debian-10`, `8.0.23`, `8.0.23-debian-10-r47`, `latest` (8.0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mysql/blob/8.0.23-debian-10-r47/8.0/debian-10/Dockerfile)
|
* [`8.0`, `8.0-debian-10`, `8.0.23`, `8.0.23-debian-10-r47`, `latest` (8.0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mysql/blob/8.0.23-debian-10-r47/8.0/debian-10/Dockerfile)
|
||||||
* [`5.7`, `5.7-debian-10`, `5.7.33`, `5.7.33-debian-10-r46` (5.7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mysql/blob/5.7.33-debian-10-r46/5.7/debian-10/Dockerfile)
|
* [`5.7`, `5.7-debian-10`, `5.7.33`, `5.7.33-debian-10-r47` (5.7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-mysql/blob/5.7.33-debian-10-r47/5.7/debian-10/Dockerfile)
|
||||||
|
|
||||||
Subscribe to project updates by watching the [bitnami/mysql GitHub repo](https://github.com/bitnami/bitnami-docker-mysql).
|
Subscribe to project updates by watching the [bitnami/mysql GitHub repo](https://github.com/bitnami/bitnami-docker-mysql).
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue