1.7.7-5-debian-10-r6 release

This commit is contained in:
Bitnami Bot
2021-06-24 01:56:51 +00:00
parent 6476c775d3
commit 0b6a6cc8be
3 changed files with 6 additions and 4 deletions

View File

@@ -29,7 +29,7 @@ ENV ALLOW_EMPTY_PASSWORD="no" \
APACHE_HTTPS_PORT_NUMBER="" \
APACHE_HTTP_PORT_NUMBER="" \
BITNAMI_APP_NAME="prestashop" \
BITNAMI_IMAGE_VERSION="1.7.7-5-debian-10-r5" \
BITNAMI_IMAGE_VERSION="1.7.7-5-debian-10-r6" \
MARIADB_HOST="mariadb" \
MARIADB_PORT_NUMBER="3306" \
MARIADB_ROOT_PASSWORD="" \

View File

@@ -348,6 +348,8 @@ is_mysql_not_running() {
# Wait for MySQL/MariaDB to be running
# Globals:
# DB_TMP_DIR
# DB_STARTUP_WAIT_RETRIES
# DB_STARTUP_WAIT_SLEEP_TIME
# Arguments:
# None
# Returns:
@@ -355,8 +357,8 @@ is_mysql_not_running() {
#########################
wait_for_mysql() {
local pid
local -r retries=300
local -r sleep_time=2
local -r retries="${DB_STARTUP_WAIT_RETRIES:-300}"
local -r sleep_time="${DB_STARTUP_WAIT_SLEEP_TIME:-2}"
if ! retry_while is_mysql_running "$retries" "$sleep_time"; then
error "MySQL failed to start"
return 1

View File

@@ -41,7 +41,7 @@ Non-root container images add an extra layer of security and are generally recom
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
* [`1.7`, `1.7-debian-10`, `1.7.7-5`, `1.7.7-5-debian-10-r5`, `latest` (1.7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-prestashop/blob/1.7.7-5-debian-10-r5/1.7/debian-10/Dockerfile)
* [`1.7`, `1.7-debian-10`, `1.7.7-5`, `1.7.7-5-debian-10-r6`, `latest` (1.7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-prestashop/blob/1.7.7-5-debian-10-r6/1.7/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/prestashop GitHub repo](https://github.com/bitnami/bitnami-docker-prestashop).