diff --git a/bitnami/ghost/4/debian-10/Dockerfile b/bitnami/ghost/4/debian-10/Dockerfile index 678fb9681d25..3a437b1aadcd 100644 --- a/bitnami/ghost/4/debian-10/Dockerfile +++ b/bitnami/ghost/4/debian-10/Dockerfile @@ -21,7 +21,7 @@ RUN /opt/bitnami/scripts/ghost/postunpack.sh RUN /opt/bitnami/scripts/mysql-client/postunpack.sh ENV ALLOW_EMPTY_PASSWORD="no" \ BITNAMI_APP_NAME="ghost" \ - BITNAMI_IMAGE_VERSION="4.12.1-debian-10-r6" \ + BITNAMI_IMAGE_VERSION="4.12.1-debian-10-r7" \ LD_PRELOAD="/opt/bitnami/common/lib/libnss_wrapper.so" \ LNAME="ghost" \ MARIADB_HOST="mariadb" \ diff --git a/bitnami/ghost/4/debian-10/rootfs/opt/bitnami/scripts/libghost.sh b/bitnami/ghost/4/debian-10/rootfs/opt/bitnami/scripts/libghost.sh index 0b9abcad23ed..7d4367925cf2 100644 --- a/bitnami/ghost/4/debian-10/rootfs/opt/bitnami/scripts/libghost.sh +++ b/bitnami/ghost/4/debian-10/rootfs/opt/bitnami/scripts/libghost.sh @@ -181,7 +181,7 @@ ghost_validate() { # Arguments: # $1 - Variable name # $2 - Value to assign to the variable -# $3 - Whether the value is a literal, or if instead it should be quoted (default: no) +# $3 - YAML type (string, int or bool) # Returns: # None ######################### diff --git a/bitnami/ghost/4/debian-10/rootfs/opt/bitnami/scripts/libmysqlclient.sh b/bitnami/ghost/4/debian-10/rootfs/opt/bitnami/scripts/libmysqlclient.sh index a0c941c5ac05..524c167367e6 100644 --- a/bitnami/ghost/4/debian-10/rootfs/opt/bitnami/scripts/libmysqlclient.sh +++ b/bitnami/ghost/4/debian-10/rootfs/opt/bitnami/scripts/libmysqlclient.sh @@ -407,7 +407,7 @@ mysql_stop() { local return_value=0 read -r -a db_files <<< "$(find "$DB_DATA_DIR" -regex "^.*ibdata[0-9]+" -print0 -o -regex "^.*ib_logfile[0-9]+" -print0 | xargs -0)" for f in "${db_files[@]}"; do - debug_execute lsof -w "$f" && return_value=1 + debug_execute fuser "$f" && return_value=1 done return $return_value } diff --git a/bitnami/ghost/README.md b/bitnami/ghost/README.md index 29d91410c032..d857b6265706 100644 --- a/bitnami/ghost/README.md +++ b/bitnami/ghost/README.md @@ -41,7 +41,7 @@ Non-root container images add an extra layer of security and are generally recom Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/). -- [`4`, `4-debian-10`, `4.12.1`, `4.12.1-debian-10-r6`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-ghost/blob/4.12.1-debian-10-r6/4/debian-10/Dockerfile) +- [`4`, `4-debian-10`, `4.12.1`, `4.12.1-debian-10-r7`, `latest` (4/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-ghost/blob/4.12.1-debian-10-r7/4/debian-10/Dockerfile) - [`3`, `3-debian-10`, `3.42.5`, `3.42.5-debian-10-r108` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-ghost/blob/3.42.5-debian-10-r108/3/debian-10/Dockerfile) Subscribe to project updates by watching the [bitnami/ghost GitHub repo](https://github.com/bitnami/bitnami-docker-ghost).