mirror of
https://github.com/bitnami/containers.git
synced 2026-04-02 15:27:45 +08:00
7.12.4-debian-10-r12 release
This commit is contained in:
@@ -23,14 +23,14 @@ RUN sed -i -e '/pam_loginuid.so/ s/^#*/#/' /etc/pam.d/cron
|
|||||||
|
|
||||||
COPY rootfs /
|
COPY rootfs /
|
||||||
RUN /opt/bitnami/scripts/mysql-client/postunpack.sh
|
RUN /opt/bitnami/scripts/mysql-client/postunpack.sh
|
||||||
RUN /opt/bitnami/scripts/apache/postunpack.sh
|
|
||||||
RUN /opt/bitnami/scripts/php/postunpack.sh
|
RUN /opt/bitnami/scripts/php/postunpack.sh
|
||||||
|
RUN /opt/bitnami/scripts/apache/postunpack.sh
|
||||||
RUN /opt/bitnami/scripts/apache-modphp/postunpack.sh
|
RUN /opt/bitnami/scripts/apache-modphp/postunpack.sh
|
||||||
RUN /opt/bitnami/scripts/suitecrm/postunpack.sh
|
RUN /opt/bitnami/scripts/suitecrm/postunpack.sh
|
||||||
ENV APACHE_HTTPS_PORT_NUMBER="" \
|
ENV APACHE_HTTPS_PORT_NUMBER="" \
|
||||||
APACHE_HTTP_PORT_NUMBER="" \
|
APACHE_HTTP_PORT_NUMBER="" \
|
||||||
BITNAMI_APP_NAME="suitecrm" \
|
BITNAMI_APP_NAME="suitecrm" \
|
||||||
BITNAMI_IMAGE_VERSION="7.12.4-debian-10-r11" \
|
BITNAMI_IMAGE_VERSION="7.12.4-debian-10-r12" \
|
||||||
PATH="/opt/bitnami/php/bin:/opt/bitnami/php/sbin:/opt/bitnami/apache/bin:/opt/bitnami/mysql/bin:/opt/bitnami/common/bin:$PATH"
|
PATH="/opt/bitnami/php/bin:/opt/bitnami/php/sbin:/opt/bitnami/apache/bin:/opt/bitnami/mysql/bin:/opt/bitnami/common/bin:$PATH"
|
||||||
|
|
||||||
EXPOSE 8080 8443
|
EXPOSE 8080 8443
|
||||||
|
|||||||
@@ -74,8 +74,9 @@ is_dir_empty() {
|
|||||||
# boolean
|
# boolean
|
||||||
#########################
|
#########################
|
||||||
is_mounted_dir_empty() {
|
is_mounted_dir_empty() {
|
||||||
local dir="${1:?missing directory}"
|
local -r path="${1:?missing directory}"
|
||||||
|
# Calculate real path in order to avoid issues with symlinks
|
||||||
|
local -r dir="$(realpath "$path")"
|
||||||
if is_dir_empty "$dir" || find "$dir" -mindepth 1 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" -exec false {} +; then
|
if is_dir_empty "$dir" || find "$dir" -mindepth 1 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" -exec false {} +; then
|
||||||
true
|
true
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -929,12 +929,17 @@ mysql_conf_set() {
|
|||||||
local -r key="${1:?key missing}"
|
local -r key="${1:?key missing}"
|
||||||
local -r value="${2:?value missing}"
|
local -r value="${2:?value missing}"
|
||||||
read -r -a sections <<<"${3:-mysqld}"
|
read -r -a sections <<<"${3:-mysqld}"
|
||||||
local -r file="${4:-"$DB_CONF_FILE"}"
|
local -r ignore_inline_comments="${4:-no}"
|
||||||
|
local -r file="${5:-"$DB_CONF_FILE"}"
|
||||||
info "Setting ${key} option"
|
info "Setting ${key} option"
|
||||||
debug "Setting ${key} to '${value}' in ${DB_FLAVOR} configuration file ${file}"
|
debug "Setting ${key} to '${value}' in ${DB_FLAVOR} configuration file ${file}"
|
||||||
# Check if the configuration exists in the file
|
# Check if the configuration exists in the file
|
||||||
for section in "${sections[@]}"; do
|
for section in "${sections[@]}"; do
|
||||||
ini-file set --section "$section" --key "$key" --value "$value" "$file"
|
if is_boolean_yes "$ignore_inline_comments"; then
|
||||||
|
ini-file set --ignore-inline-comments --section "$section" --key "$key" --value "$value" "$file"
|
||||||
|
else
|
||||||
|
ini-file set --section "$section" --key "$key" --value "$value" "$file"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ Bitnami containers can be used with [Kubeapps](https://kubeapps.com/) for deploy
|
|||||||
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/).
|
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/).
|
||||||
|
|
||||||
|
|
||||||
* [`7`, `7-debian-10`, `7.12.4`, `7.12.4-debian-10-r11`, `latest` (7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-suitecrm/blob/7.12.4-debian-10-r11/7/debian-10/Dockerfile)
|
* [`7`, `7-debian-10`, `7.12.4`, `7.12.4-debian-10-r12`, `latest` (7/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-suitecrm/blob/7.12.4-debian-10-r12/7/debian-10/Dockerfile)
|
||||||
|
|
||||||
Subscribe to project updates by watching the [bitnami/suitecrm GitHub repo](https://github.com/bitnami/bitnami-docker-suitecrm).
|
Subscribe to project updates by watching the [bitnami/suitecrm GitHub repo](https://github.com/bitnami/bitnami-docker-suitecrm).
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user