diff --git a/bitnami/prestashop/8/debian-11/Dockerfile b/bitnami/prestashop/8/debian-11/Dockerfile index 7d7b484fa7d2..2bd6835936b7 100644 --- a/bitnami/prestashop/8/debian-11/Dockerfile +++ b/bitnami/prestashop/8/debian-11/Dockerfile @@ -3,13 +3,13 @@ FROM docker.io/bitnami/minideb:bullseye ARG TARGETARCH LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \ - org.opencontainers.image.created="2023-04-07T18:22:19Z" \ + org.opencontainers.image.created="2023-04-10T22:13:25Z" \ org.opencontainers.image.description="Application packaged by VMware, Inc" \ org.opencontainers.image.licenses="Apache-2.0" \ - org.opencontainers.image.ref.name="8.0.2-debian-11-r6" \ + org.opencontainers.image.ref.name="8.0.3-debian-11-r0" \ org.opencontainers.image.title="prestashop" \ org.opencontainers.image.vendor="VMware, Inc." \ - org.opencontainers.image.version="8.0.2" + org.opencontainers.image.version="8.0.3" ENV HOME="/" \ OS_ARCH="${TARGETARCH:-amd64}" \ @@ -27,7 +27,7 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \ "mysql-client-10.6.12-4-linux-${OS_ARCH}-debian-11" \ "libphp-8.1.17-5-linux-${OS_ARCH}-debian-11" \ "render-template-1.0.5-4-linux-${OS_ARCH}-debian-11" \ - "prestashop-8.0.2-3-linux-${OS_ARCH}-debian-11" \ + "prestashop-8.0.3-0-linux-${OS_ARCH}-debian-11" \ "gosu-1.16.0-5-linux-${OS_ARCH}-debian-11" \ ) && \ for COMPONENT in "${COMPONENTS[@]}"; do \ @@ -52,7 +52,7 @@ RUN /opt/bitnami/scripts/apache-modphp/postunpack.sh RUN /opt/bitnami/scripts/prestashop/postunpack.sh ENV APACHE_HTTPS_PORT_NUMBER="" \ APACHE_HTTP_PORT_NUMBER="" \ - APP_VERSION="8.0.2" \ + APP_VERSION="8.0.3" \ BITNAMI_APP_NAME="prestashop" \ PATH="/opt/bitnami/php/bin:/opt/bitnami/php/sbin:/opt/bitnami/apache/bin:/opt/bitnami/mysql/bin:/opt/bitnami/common/bin:/opt/bitnami/prestashop/bin:$PATH" diff --git a/bitnami/prestashop/8/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json b/bitnami/prestashop/8/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json index 6321c50e6611..5326bed22b15 100644 --- a/bitnami/prestashop/8/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json +++ b/bitnami/prestashop/8/debian-11/prebuildfs/opt/bitnami/.bitnami_components.json @@ -33,7 +33,7 @@ "arch": "amd64", "distro": "debian-11", "type": "NAMI", - "version": "8.0.2-3" + "version": "8.0.3-0" }, "render-template": { "arch": "amd64", diff --git a/bitnami/prestashop/8/debian-11/prebuildfs/opt/bitnami/scripts/libwebserver.sh b/bitnami/prestashop/8/debian-11/prebuildfs/opt/bitnami/scripts/libwebserver.sh index 5860791219cf..94745ebe419e 100644 --- a/bitnami/prestashop/8/debian-11/prebuildfs/opt/bitnami/scripts/libwebserver.sh +++ b/bitnami/prestashop/8/debian-11/prebuildfs/opt/bitnami/scripts/libwebserver.sh @@ -112,10 +112,10 @@ is_web_server_running() { ######################### web_server_start() { info "Starting $(web_server_type) in background" - if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then - "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/start.sh" - elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then + if [[ "${BITNAMI_SERVICE_MANAGER:-}" = "systemd" ]]; then systemctl start "bitnami.$(web_server_type).service" + else + "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/start.sh" fi } @@ -130,10 +130,10 @@ web_server_start() { ######################### web_server_stop() { info "Stopping $(web_server_type)" - if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then - "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/stop.sh" - elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then + if [[ "${BITNAMI_SERVICE_MANAGER:-}" = "systemd" ]]; then systemctl stop "bitnami.$(web_server_type).service" + else + "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/stop.sh" fi } @@ -148,10 +148,10 @@ web_server_stop() { ######################### web_server_restart() { info "Restarting $(web_server_type)" - if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then - "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/restart.sh" - elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then + if [[ "${BITNAMI_SERVICE_MANAGER:-}" = "systemd" ]]; then systemctl restart "bitnami.$(web_server_type).service" + else + "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/restart.sh" fi } @@ -165,10 +165,10 @@ web_server_restart() { # None ######################### web_server_reload() { - if [[ "$BITNAMI_SERVICE_MANAGER" = "monit" ]]; then - "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/reload.sh" - elif [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]]; then + if [[ "${BITNAMI_SERVICE_MANAGER:-}" = "systemd" ]]; then systemctl reload "bitnami.$(web_server_type).service" + else + "${BITNAMI_ROOT_DIR}/scripts/$(web_server_type)/reload.sh" fi } diff --git a/bitnami/prestashop/8/debian-11/tags-info.yaml b/bitnami/prestashop/8/debian-11/tags-info.yaml index f27c6c60800d..28805fabc228 100644 --- a/bitnami/prestashop/8/debian-11/tags-info.yaml +++ b/bitnami/prestashop/8/debian-11/tags-info.yaml @@ -1,5 +1,5 @@ rolling-tags: - "8" - 8-debian-11 -- 8.0.2 +- 8.0.3 - latest