From 07c23ca033f7fcd438499ce4c44b522ca1fbce6f Mon Sep 17 00:00:00 2001 From: Bitnami Bot Date: Wed, 20 Mar 2024 14:29:37 +0100 Subject: [PATCH] [bitnami/prestashop] Release 8.1.5-debian-12-r1 (#63941) Signed-off-by: Bitnami Containers --- bitnami/prestashop/8/debian-12/Dockerfile | 4 ++-- .../opt/bitnami/scripts/apache-modphp/postunpack.sh | 4 ++++ bitnami/prestashop/README.md | 8 ++++++++ 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/bitnami/prestashop/8/debian-12/Dockerfile b/bitnami/prestashop/8/debian-12/Dockerfile index 380747cca0df..979c9b034d92 100644 --- a/bitnami/prestashop/8/debian-12/Dockerfile +++ b/bitnami/prestashop/8/debian-12/Dockerfile @@ -7,10 +7,10 @@ ARG TARGETARCH LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \ org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \ - org.opencontainers.image.created="2024-03-18T15:59:38Z" \ + org.opencontainers.image.created="2024-03-20T12:32:54Z" \ org.opencontainers.image.description="Application packaged by VMware, Inc" \ org.opencontainers.image.licenses="Apache-2.0" \ - org.opencontainers.image.ref.name="8.1.5-debian-12-r0" \ + org.opencontainers.image.ref.name="8.1.5-debian-12-r1" \ org.opencontainers.image.title="prestashop" \ org.opencontainers.image.vendor="VMware, Inc." \ org.opencontainers.image.version="8.1.5" diff --git a/bitnami/prestashop/8/debian-12/rootfs/opt/bitnami/scripts/apache-modphp/postunpack.sh b/bitnami/prestashop/8/debian-12/rootfs/opt/bitnami/scripts/apache-modphp/postunpack.sh index a415969338cc..3f0c344de235 100755 --- a/bitnami/prestashop/8/debian-12/rootfs/opt/bitnami/scripts/apache-modphp/postunpack.sh +++ b/bitnami/prestashop/8/debian-12/rootfs/opt/bitnami/scripts/apache-modphp/postunpack.sh @@ -37,3 +37,7 @@ AddType application/x-httpd-php .php DirectoryIndex index.html index.htm index.php EOF ensure_apache_configuration_exists "Include \"${apache_php_conf_file}\"" + +# 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" diff --git a/bitnami/prestashop/README.md b/bitnami/prestashop/README.md index dbb535db4e85..d472ceda5181 100644 --- a/bitnami/prestashop/README.md +++ b/bitnami/prestashop/README.md @@ -202,6 +202,7 @@ docker run -d --name prestashop \ | Name | Description | Default Value | |-----------------------------------------|----------------------------------------------------------------------------------------------------------------------------------|-------------------------------------| | `PRESTASHOP_DATA_TO_PERSIST` | Files to persist relative to the PrestaShop installation directory. To provide multiple values, separate them with a whitespace. | `$PRESTASHOP_BASE_DIR` | +| `PRESTASHOP_HOST` | PrestaShop server hostname. | `nil` | | `PRESTASHOP_ENABLE_HTTPS` | Whether to use HTTPS by default. | `no` | | `PRESTASHOP_EXTERNAL_HTTP_PORT_NUMBER` | Port to used by PrestaShop to generate URLs and links when accessing using HTTP. | `80` | | `PRESTASHOP_EXTERNAL_HTTPS_PORT_NUMBER` | Port to used by PrestaShop to generate URLs and links when accessing using HTTPS. | `443` | @@ -209,15 +210,22 @@ docker run -d --name prestashop \ | `PRESTASHOP_COUNTRY` | Default country of the store. | `us` | | `PRESTASHOP_LANGUAGE` | Default language of the store (ISO code). | `en` | | `PRESTASHOP_TIMEZONE` | Default timezone for the store. | `America/Los_Angeles` | +| `PRESTASHOP_SKIP_BOOTSTRAP` | Whether to perform initial bootstrapping for the application. | `nil` | | `PRESTASHOP_FIRST_NAME` | PrestaShop user first name. | `Bitnami` | | `PRESTASHOP_LAST_NAME` | PrestaShop user last name. | `User` | | `PRESTASHOP_PASSWORD` | PrestaShop user password. | `bitnami1` | | `PRESTASHOP_EMAIL` | PrestaShop user e-mail address. | `user@example.com` | +| `PRESTASHOP_SMTP_HOST` | PrestaShop SMTP server host. | `nil` | +| `PRESTASHOP_SMTP_PORT_NUMBER` | PrestaShop SMTP server port number. | `nil` | +| `PRESTASHOP_SMTP_USER` | PrestaShop SMTP server user. | `nil` | +| `PRESTASHOP_SMTP_PASSWORD` | PrestaShop SMTP server user password. | `nil` | +| `PRESTASHOP_SMTP_PROTOCOL` | PrestaShop SMTP server protocol to use. | `nil` | | `PRESTASHOP_DATABASE_HOST` | Database server host. | `$PRESTASHOP_DEFAULT_DATABASE_HOST` | | `PRESTASHOP_DATABASE_PORT_NUMBER` | Database server port. | `3306` | | `PRESTASHOP_DATABASE_NAME` | Database name. | `bitnami_prestashop` | | `PRESTASHOP_DATABASE_PREFIX` | Database prefix. | `ps_` | | `PRESTASHOP_DATABASE_USER` | Database user name. | `bn_prestashop` | +| `PRESTASHOP_DATABASE_PASSWORD` | Database user password. | `nil` | #### Read-only environment variables