5.4.7-debian-10-r3 release
This commit is contained in:
parent
d4bc85942a
commit
6f96b97b0e
|
|
@ -22,7 +22,6 @@ RUN /opt/bitnami/scripts/php/postunpack.sh
|
|||
RUN /opt/bitnami/scripts/symfony/postunpack.sh
|
||||
ENV APP_VERSION="5.4.7" \
|
||||
BITNAMI_APP_NAME="symfony" \
|
||||
BITNAMI_IMAGE_VERSION="5.4.7-debian-10-r2" \
|
||||
PATH="/opt/bitnami/php/bin:/opt/bitnami/php/sbin:/opt/bitnami/mysql/bin:/opt/bitnami/symfony/bin:/opt/bitnami/common/bin:$PATH" \
|
||||
PHP_ENABLE_OPCACHE="0"
|
||||
|
||||
|
|
|
|||
|
|
@ -132,10 +132,14 @@ mysql_client_initialize() {
|
|||
# None
|
||||
#########################
|
||||
mysql_client_wrap_binary_for_ssl() {
|
||||
local -r wrapper_file="${DB_BIN_DIR}/mysql"
|
||||
local wrapper_file="${DB_BIN_DIR}/mysql"
|
||||
# In MySQL Client 10.6, mysql is a link to the mariadb binary
|
||||
if [[ -f "${DB_BIN_DIR}/mariadb" ]]; then
|
||||
wrapper_file="${DB_BIN_DIR}/mariadb"
|
||||
fi
|
||||
local -r wrapped_binary_file="${DB_BASE_DIR}/.bin/mysql"
|
||||
local -a ssl_opts=()
|
||||
read -r -a ssl_opts <<< "$(mysql_client_extra_opts)"
|
||||
read -r -a ssl_opts <<<"$(mysql_client_extra_opts)"
|
||||
|
||||
mv "$wrapper_file" "$wrapped_binary_file"
|
||||
cat >"$wrapper_file" <<EOF
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ Learn more about the Bitnami tagging policy and the difference between rolling t
|
|||
|
||||
|
||||
* [`6.0`, `6.0-debian-10`, `6.0.7`, `6.0.7-debian-10-r2`, `latest` (6.0/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-symfony/blob/6.0.7-debian-10-r2/6.0/debian-10/Dockerfile)
|
||||
* [`5.4`, `5.4-debian-10`, `5.4.7`, `5.4.7-debian-10-r2` (5.4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-symfony/blob/5.4.7-debian-10-r2/5.4/debian-10/Dockerfile)
|
||||
* [`5.4`, `5.4-debian-10`, `5.4.7`, `5.4.7-debian-10-r3` (5.4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-symfony/blob/5.4.7-debian-10-r3/5.4/debian-10/Dockerfile)
|
||||
* [`4.4`, `4.4-debian-10`, `4.4.40`, `4.4.40-debian-10-r2` (4.4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-symfony/blob/4.4.40-debian-10-r2/4.4/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/symfony GitHub repo](https://github.com/bitnami/bitnami-docker-symfony).
|
||||
|
|
|
|||
Loading…
Reference in New Issue