[bitnami/matomo] Release 4.12.0-debian-11-r0 (#9822)

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot 2022-10-11 20:15:17 +02:00 committed by GitHub
parent 6a5f0265f0
commit 105f5f954e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 9 deletions

View File

@ -4,11 +4,11 @@ ARG TARGETARCH
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
org.opencontainers.image.description="Application packaged by Bitnami" \
org.opencontainers.image.ref.name="4.11.0-debian-11-r28" \
org.opencontainers.image.ref.name="4.12.0-debian-11-r0" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/matomo" \
org.opencontainers.image.title="matomo" \
org.opencontainers.image.vendor="VMware, Inc." \
org.opencontainers.image.version="4.11.0"
org.opencontainers.image.version="4.12.0"
ENV HOME="/" \
OS_ARCH="${TARGETARCH:-amd64}" \
@ -27,7 +27,7 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
"libphp-8.1.11-1-linux-${OS_ARCH}-debian-11" \
"ini-file-1.4.3-154-linux-${OS_ARCH}-debian-11" \
"render-template-1.0.3-154-linux-${OS_ARCH}-debian-11" \
"matomo-4.11.0-3-linux-${OS_ARCH}-debian-11" \
"matomo-4.12.0-0-linux-${OS_ARCH}-debian-11" \
"gosu-1.14.0-155-linux-${OS_ARCH}-debian-11" \
) && \
for COMPONENT in "${COMPONENTS[@]}"; do \
@ -52,7 +52,7 @@ RUN /opt/bitnami/scripts/matomo/postunpack.sh
RUN /opt/bitnami/scripts/mysql-client/postunpack.sh
ENV APACHE_HTTPS_PORT_NUMBER="" \
APACHE_HTTP_PORT_NUMBER="" \
APP_VERSION="4.11.0" \
APP_VERSION="4.12.0" \
BITNAMI_APP_NAME="matomo" \
PATH="/opt/bitnami/php/bin:/opt/bitnami/php/sbin:/opt/bitnami/apache/bin:/opt/bitnami/mysql/bin:/opt/bitnami/common/bin:$PATH"

View File

@ -29,10 +29,10 @@
},
"matomo": {
"arch": "amd64",
"digest": "6ffc7edaf27c4209fb92350decf8cf963cf686d150f88db30d3b56f77f1c801c",
"digest": "ae1464d4a876f5ddd1c349929b94f878fe345ae7d9afaf779a41a8e9d96aadcc",
"distro": "debian-11",
"type": "NAMI",
"version": "4.11.0-3"
"version": "4.12.0-0"
},
"mysql-client": {
"arch": "amd64",

View File

@ -519,7 +519,7 @@ get_machine_id() {
get_disk_device_id() {
local device_id=""
if grep -q ^/dev /proc/mounts; then
device_id="$(grep -q ^/dev /proc/mounts | awk '$2 == "/" { print $1 }' | tail -1)"
device_id="$(grep ^/dev /proc/mounts | awk '$2 == "/" { print $1 }' | tail -1)"
fi
# If it could not be autodetected, fallback to /dev/sda1 as a default
if [[ -z "$device_id" || ! -b "$device_id" ]]; then
@ -538,7 +538,7 @@ get_disk_device_id() {
# Root disk ID
#########################
get_root_disk_device_id() {
get_disk_device_id | sed 's/[0-9]\+$//'
get_disk_device_id | sed -E 's/p?[0-9]+$//'
}
########################

View File

@ -1,5 +1,5 @@
rolling-tags:
- "4"
- "4-debian-11"
- "4.11.0"
- "4.12.0"
- "latest"