[bitnami/suitecrm] Release 8.3.1-debian-11-r31 (#44868)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
parent
3a69e7348e
commit
52052866e4
|
|
@ -7,10 +7,10 @@ ARG TARGETARCH
|
|||
|
||||
LABEL com.vmware.cp.artifact.flavor="sha256:1e1b4657a77f0d47e9220f0c37b9bf7802581b93214fff7d1bd2364c8bf22e8e" \
|
||||
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bullseye" \
|
||||
org.opencontainers.image.created="2023-08-13T04:40:24Z" \
|
||||
org.opencontainers.image.created="2023-08-16T09:21:47Z" \
|
||||
org.opencontainers.image.description="Application packaged by VMware, Inc" \
|
||||
org.opencontainers.image.licenses="Apache-2.0" \
|
||||
org.opencontainers.image.ref.name="8.3.1-debian-11-r27" \
|
||||
org.opencontainers.image.ref.name="8.3.1-debian-11-r31" \
|
||||
org.opencontainers.image.title="suitecrm" \
|
||||
org.opencontainers.image.vendor="VMware, Inc." \
|
||||
org.opencontainers.image.version="8.3.1"
|
||||
|
|
@ -27,7 +27,7 @@ RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
|||
COMPONENTS=( \
|
||||
"php-8.1.22-1-linux-${OS_ARCH}-debian-11" \
|
||||
"apache-2.4.57-10-linux-${OS_ARCH}-debian-11" \
|
||||
"mysql-client-10.11.4-1-linux-${OS_ARCH}-debian-11" \
|
||||
"mysql-client-10.11.5-0-linux-${OS_ARCH}-debian-11" \
|
||||
"libphp-8.1.22-1-linux-${OS_ARCH}-debian-11" \
|
||||
"suitecrm-8.3.1-1-linux-${OS_ARCH}-debian-11" \
|
||||
"render-template-1.0.5-10-linux-${OS_ARCH}-debian-11" \
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
"arch": "amd64",
|
||||
"distro": "debian-11",
|
||||
"type": "NAMI",
|
||||
"version": "10.11.4-1"
|
||||
"version": "10.11.5-0"
|
||||
},
|
||||
"php": {
|
||||
"arch": "amd64",
|
||||
|
|
|
|||
|
|
@ -113,8 +113,8 @@ suitecrm_initialize() {
|
|||
# Ensure SuiteCRM persisted directories exist (i.e. when a volume has been mounted to /bitnami)
|
||||
info "Ensuring SuiteCRM directories exist"
|
||||
ensure_dir_exists "$SUITECRM_VOLUME_DIR"
|
||||
# Use daemon:root ownership for compatibility when running as a non-root user
|
||||
am_i_root && configure_permissions_ownership "$SUITECRM_VOLUME_DIR" -d "775" -f "664" -u "$WEB_SERVER_DAEMON_USER" -g "root"
|
||||
# Use daemon:daemon ownership for compatibility when running as a non-root user
|
||||
am_i_root && configure_permissions_ownership "$SUITECRM_VOLUME_DIR" -d "775" -f "664" -u "$WEB_SERVER_DAEMON_USER" -g "$WEB_SERVER_DAEMON_GROUP"
|
||||
info "Trying to connect to the database server"
|
||||
db_host="$SUITECRM_DATABASE_HOST"
|
||||
db_port="$SUITECRM_DATABASE_PORT_NUMBER"
|
||||
|
|
|
|||
|
|
@ -31,8 +31,8 @@ info "Configuring file permissions for SuiteCRM"
|
|||
ensure_user_exists "$WEB_SERVER_DAEMON_USER" --group "$WEB_SERVER_DAEMON_GROUP"
|
||||
for dir in "$SUITECRM_BASE_DIR" "$SUITECRM_VOLUME_DIR" "${SUITECRM_BASE_DIR}/tmp"; do
|
||||
ensure_dir_exists "$dir"
|
||||
# Use daemon:root ownership for compatibility when running as a non-root user
|
||||
configure_permissions_ownership "$dir" -d "775" -f "664" -u "$WEB_SERVER_DAEMON_USER" -g "root"
|
||||
# Use daemon:daemon ownership for compatibility when running as a non-root user
|
||||
configure_permissions_ownership "$dir" -d "775" -f "664" -u "$WEB_SERVER_DAEMON_USER" -g "$WEB_SERVER_DAEMON_GROUP"
|
||||
done
|
||||
|
||||
# Configure required PHP options for application to work properly, based on build-time defaults
|
||||
|
|
|
|||
Loading…
Reference in New Issue