Skip to content

Commit b936b8e

Browse files
committed
Ref #369 - Update files using ./update.sh
1 parent 5ab888d commit b936b8e

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

apache/docker-entrypoint.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,14 @@ if [ ! -z "${PMA_USER_CONFIG_BASE64}" ]; then
2828
echo "${PMA_USER_CONFIG_BASE64}" | base64 -d > /etc/phpmyadmin/config.user.inc.php
2929
fi
3030

31+
# start: Apache specific settings
3132
if [ -n "${APACHE_PORT+x}" ]; then
3233
echo "Setting apache port to ${APACHE_PORT}."
3334
sed -i "s/VirtualHost \*:80/VirtualHost \*:${APACHE_PORT}/" /etc/apache2/sites-enabled/000-default.conf
3435
sed -i "s/Listen 80/Listen ${APACHE_PORT}/" /etc/apache2/ports.conf
3536
apachectl configtest
3637
fi
38+
# end: Apache specific settings
3739

3840
get_docker_secret() {
3941
local env_var="${1}"

fpm-alpine/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ if [ ! -z "${PMA_USER_CONFIG_BASE64}" ]; then
2828
echo "${PMA_USER_CONFIG_BASE64}" | base64 -d > /etc/phpmyadmin/config.user.inc.php
2929
fi
3030

31+
3132
get_docker_secret() {
3233
local env_var="${1}"
3334
local env_var_file="${env_var}_FILE"

fpm/docker-entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ if [ ! -z "${PMA_USER_CONFIG_BASE64}" ]; then
2828
echo "${PMA_USER_CONFIG_BASE64}" | base64 -d > /etc/phpmyadmin/config.user.inc.php
2929
fi
3030

31+
3132
get_docker_secret() {
3233
local env_var="${1}"
3334
local env_var_file="${env_var}_FILE"

0 commit comments

Comments
 (0)