mirror of
https://github.com/bitnami/containers.git
synced 2026-03-21 15:29:05 +08:00
[bitnami/prestashop] Release 8.1.4-debian-12-r3 (#63530)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
@@ -7,10 +7,10 @@ ARG TARGETARCH
|
|||||||
|
|
||||||
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
|
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
|
||||||
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
|
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
|
||||||
org.opencontainers.image.created="2024-02-24T00:38:36Z" \
|
org.opencontainers.image.created="2024-03-05T09:12:22Z" \
|
||||||
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
||||||
org.opencontainers.image.licenses="Apache-2.0" \
|
org.opencontainers.image.licenses="Apache-2.0" \
|
||||||
org.opencontainers.image.ref.name="8.1.4-debian-12-r2" \
|
org.opencontainers.image.ref.name="8.1.4-debian-12-r3" \
|
||||||
org.opencontainers.image.title="prestashop" \
|
org.opencontainers.image.title="prestashop" \
|
||||||
org.opencontainers.image.vendor="VMware, Inc." \
|
org.opencontainers.image.vendor="VMware, Inc." \
|
||||||
org.opencontainers.image.version="8.1.4"
|
org.opencontainers.image.version="8.1.4"
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ export WEB_SERVER_TYPE="apache"
|
|||||||
export APACHE_BASE_DIR="${BITNAMI_ROOT_DIR}/apache"
|
export APACHE_BASE_DIR="${BITNAMI_ROOT_DIR}/apache"
|
||||||
export APACHE_BIN_DIR="${APACHE_BASE_DIR}/bin"
|
export APACHE_BIN_DIR="${APACHE_BASE_DIR}/bin"
|
||||||
export APACHE_CONF_DIR="${APACHE_BASE_DIR}/conf"
|
export APACHE_CONF_DIR="${APACHE_BASE_DIR}/conf"
|
||||||
|
export APACHE_DEFAULT_CONF_DIR="${APACHE_BASE_DIR}/conf.default"
|
||||||
export APACHE_HTDOCS_DIR="${APACHE_BASE_DIR}/htdocs"
|
export APACHE_HTDOCS_DIR="${APACHE_BASE_DIR}/htdocs"
|
||||||
export APACHE_TMP_DIR="${APACHE_BASE_DIR}/var/run"
|
export APACHE_TMP_DIR="${APACHE_BASE_DIR}/var/run"
|
||||||
export APACHE_LOGS_DIR="${APACHE_BASE_DIR}/logs"
|
export APACHE_LOGS_DIR="${APACHE_BASE_DIR}/logs"
|
||||||
|
|||||||
@@ -19,6 +19,12 @@ set -o pipefail
|
|||||||
|
|
||||||
print_welcome_page
|
print_welcome_page
|
||||||
|
|
||||||
|
# We add the copy from default config in the entrypoint to not break users
|
||||||
|
# bypassing the setup.sh logic. If the file already exists do not overwrite (in
|
||||||
|
# case someone mounts a configuration file in /opt/bitnami/apache/conf)
|
||||||
|
debug "Copying files from $APACHE_DEFAULT_CONF_DIR to $APACHE_CONF_DIR"
|
||||||
|
cp -nr "$APACHE_DEFAULT_CONF_DIR"/. "$APACHE_CONF_DIR"
|
||||||
|
|
||||||
if [[ "$*" == *"/opt/bitnami/scripts/apache/run.sh"* ]]; then
|
if [[ "$*" == *"/opt/bitnami/scripts/apache/run.sh"* ]]; then
|
||||||
info "** Starting Apache setup **"
|
info "** Starting Apache setup **"
|
||||||
/opt/bitnami/scripts/apache/setup.sh
|
/opt/bitnami/scripts/apache/setup.sh
|
||||||
|
|||||||
@@ -109,7 +109,7 @@ EOF
|
|||||||
apache_setup_bitnami_config
|
apache_setup_bitnami_config
|
||||||
|
|
||||||
# Ensure non-root user has write permissions on a set of directories
|
# Ensure non-root user has write permissions on a set of directories
|
||||||
for dir in "$APACHE_TMP_DIR" "$APACHE_CONF_DIR" "$APACHE_LOGS_DIR" "$APACHE_VHOSTS_DIR" "$APACHE_HTACCESS_DIR" "$APACHE_HTDOCS_DIR"; do
|
for dir in "$APACHE_TMP_DIR" "$APACHE_CONF_DIR" "$APACHE_LOGS_DIR" "$APACHE_VHOSTS_DIR" "$APACHE_HTACCESS_DIR" "$APACHE_HTDOCS_DIR" "$APACHE_DEFAULT_CONF_DIR"; do
|
||||||
ensure_dir_exists "$dir"
|
ensure_dir_exists "$dir"
|
||||||
chmod -R g+rwX "$dir"
|
chmod -R g+rwX "$dir"
|
||||||
done
|
done
|
||||||
@@ -125,3 +125,7 @@ ln -sf "/dev/stderr" "${APACHE_LOGS_DIR}/error_log"
|
|||||||
# Source: https://stackoverflow.com/questions/94445/using-openssl-what-does-unable-to-write-random-state-mean
|
# Source: https://stackoverflow.com/questions/94445/using-openssl-what-does-unable-to-write-random-state-mean
|
||||||
|
|
||||||
touch /.rnd && chmod g+rw /.rnd
|
touch /.rnd && chmod g+rw /.rnd
|
||||||
|
|
||||||
|
# Copy all initially generated configuration files to the default directory
|
||||||
|
# (this is to avoid breaking when entrypoint is being overridden)
|
||||||
|
cp -r "$APACHE_CONF_DIR"/* "$APACHE_DEFAULT_CONF_DIR"
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ set -o pipefail
|
|||||||
# set -o xtrace # Uncomment this line for debugging purposes
|
# set -o xtrace # Uncomment this line for debugging purposes
|
||||||
|
|
||||||
# Load libraries
|
# Load libraries
|
||||||
|
. /opt/bitnami/scripts/libfs.sh
|
||||||
. /opt/bitnami/scripts/liblog.sh
|
. /opt/bitnami/scripts/liblog.sh
|
||||||
. /opt/bitnami/scripts/libapache.sh
|
. /opt/bitnami/scripts/libapache.sh
|
||||||
|
|
||||||
@@ -22,6 +23,12 @@ apache_validate
|
|||||||
# Ensure Apache daemon user exists when running as 'root'
|
# Ensure Apache daemon user exists when running as 'root'
|
||||||
am_i_root && ensure_user_exists "$APACHE_DAEMON_USER" --group "$APACHE_DAEMON_GROUP"
|
am_i_root && ensure_user_exists "$APACHE_DAEMON_USER" --group "$APACHE_DAEMON_GROUP"
|
||||||
|
|
||||||
|
if ! is_dir_empty "$APACHE_DEFAULT_CONF_DIR"; then
|
||||||
|
# We add the copy from default config in the initialize function for web applications
|
||||||
|
# that make use of the Apache setup.sh script
|
||||||
|
debug "Copying files from $APACHE_DEFAULT_CONF_DIR to $APACHE_CONF_DIR"
|
||||||
|
cp -nr "$APACHE_DEFAULT_CONF_DIR"/. "$APACHE_CONF_DIR"
|
||||||
|
fi
|
||||||
# Generate SSL certs (without a passphrase)
|
# Generate SSL certs (without a passphrase)
|
||||||
ensure_dir_exists "${APACHE_CONF_DIR}/bitnami/certs"
|
ensure_dir_exists "${APACHE_CONF_DIR}/bitnami/certs"
|
||||||
if [[ ! -f "${APACHE_CONF_DIR}/bitnami/certs/server.crt" ]]; then
|
if [[ ! -f "${APACHE_CONF_DIR}/bitnami/certs/server.crt" ]]; then
|
||||||
|
|||||||
@@ -59,8 +59,13 @@ php_conf_set() {
|
|||||||
php_initialize() {
|
php_initialize() {
|
||||||
# Configure PHP options based on the runtime environment
|
# Configure PHP options based on the runtime environment
|
||||||
info "Configuring PHP options"
|
info "Configuring PHP options"
|
||||||
|
if ! is_dir_empty "$PHP_DEFAULT_CONF_DIR"; then
|
||||||
|
# Copy default configuration to php configuration directory
|
||||||
|
cp -nr "$PHP_DEFAULT_CONF_DIR"/. "$PHP_CONF_DIR"
|
||||||
|
fi
|
||||||
php_set_runtime_config "$PHP_CONF_FILE"
|
php_set_runtime_config "$PHP_CONF_FILE"
|
||||||
|
|
||||||
|
|
||||||
# PHP-FPM configuration
|
# PHP-FPM configuration
|
||||||
! is_empty_value "$PHP_FPM_LISTEN_ADDRESS" && info "Setting PHP-FPM listen option" && php_conf_set "listen" "$PHP_FPM_LISTEN_ADDRESS" "${PHP_CONF_DIR}/php-fpm.d/www.conf"
|
! is_empty_value "$PHP_FPM_LISTEN_ADDRESS" && info "Setting PHP-FPM listen option" && php_conf_set "listen" "$PHP_FPM_LISTEN_ADDRESS" "${PHP_CONF_DIR}/php-fpm.d/www.conf"
|
||||||
|
|
||||||
|
|||||||
@@ -52,6 +52,7 @@ unset php_env_vars
|
|||||||
export PHP_BASE_DIR="${BITNAMI_ROOT_DIR}/php"
|
export PHP_BASE_DIR="${BITNAMI_ROOT_DIR}/php"
|
||||||
export PHP_BIN_DIR="${PHP_BASE_DIR}/bin"
|
export PHP_BIN_DIR="${PHP_BASE_DIR}/bin"
|
||||||
export PHP_CONF_DIR="${PHP_BASE_DIR}/etc"
|
export PHP_CONF_DIR="${PHP_BASE_DIR}/etc"
|
||||||
|
export PHP_DEFAULT_CONF_DIR="${PHP_BASE_DIR}/etc.default"
|
||||||
export PHP_TMP_DIR="${PHP_BASE_DIR}/var/run"
|
export PHP_TMP_DIR="${PHP_BASE_DIR}/var/run"
|
||||||
export PHP_CONF_FILE="${PHP_CONF_DIR}/php.ini"
|
export PHP_CONF_FILE="${PHP_CONF_DIR}/php.ini"
|
||||||
|
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ php_conf_set "upload_tmp_dir" "${PHP_BASE_DIR}/tmp"
|
|||||||
php_conf_set "session.save_path" "${PHP_TMP_DIR}/session"
|
php_conf_set "session.save_path" "${PHP_TMP_DIR}/session"
|
||||||
|
|
||||||
# Ensure directories used by PHP-FPM exist and have proper ownership and permissions
|
# Ensure directories used by PHP-FPM exist and have proper ownership and permissions
|
||||||
for dir in "$PHP_CONF_DIR" "${PHP_BASE_DIR}/tmp" "$PHP_TMP_DIR" "$PHP_FPM_LOGS_DIR" "${PHP_TMP_DIR}/session"; do
|
for dir in "$PHP_CONF_DIR" "$PHP_DEFAULT_CONF_DIR" "${PHP_BASE_DIR}/tmp" "$PHP_TMP_DIR" "$PHP_FPM_LOGS_DIR" "${PHP_TMP_DIR}/session"; do
|
||||||
ensure_dir_exists "$dir"
|
ensure_dir_exists "$dir"
|
||||||
chmod -R g+rwX "$dir"
|
chmod -R g+rwX "$dir"
|
||||||
done
|
done
|
||||||
@@ -41,3 +41,7 @@ touch "${PHP_CONF_DIR}/common.conf"
|
|||||||
# Log to stdout/stderr for easy debugging
|
# Log to stdout/stderr for easy debugging
|
||||||
ln -sf "/dev/stdout" "$PHP_FPM_LOG_FILE"
|
ln -sf "/dev/stdout" "$PHP_FPM_LOG_FILE"
|
||||||
php_conf_set "error_log" "/dev/stderr"
|
php_conf_set "error_log" "/dev/stderr"
|
||||||
|
|
||||||
|
# Copy all initially generated configuration files to the default directory
|
||||||
|
# (this is to avoid breaking when entrypoint is being overridden)
|
||||||
|
cp -r "$PHP_CONF_DIR"/* "$PHP_DEFAULT_CONF_DIR"
|
||||||
|
|||||||
Reference in New Issue
Block a user