3.10.0-debian-10-r45 release

This commit is contained in:
Bitnami Bot
2020-12-28 15:16:54 +00:00
parent 6fec6560dd
commit 0a5637d06f
4 changed files with 14 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "apache" "2.4.46-
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "mysql-client" "10.3.27-0" --checksum f96905e763a6334b75a7cdb07f8d89658cde02be41cb09d91d0682fc649fdcff
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "libphp" "7.3.25-1" --checksum 830db27d5ba104e6927e9f32626be713d562ffd10ffc4791b54bae36ad6a0947
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "render-template" "1.0.0-3" --checksum 8179ad1371c9a7d897fe3b1bf53bbe763f94edafef19acad2498dd48b3674efe
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "moodle" "3.10.0-0" --checksum 7a3a5ef96178b14eee24847aaf407a29ab7ea3831e8fb4812a96c43d4a29db6e
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "moodle" "3.10.0-1" --checksum 71ef46968d001246683f0bc992d2643f26a686276403e6eec58632a1b0b61f8b
RUN . /opt/bitnami/scripts/libcomponent.sh && component_unpack "gosu" "1.12.0-2" --checksum 4d858ac600c38af8de454c27b7f65c0074ec3069880cb16d259a6e40a46bbc50
RUN apt-get update && apt-get upgrade -y && \
rm -r /var/lib/apt/lists /var/cache/apt/archives
@@ -31,8 +31,8 @@ RUN echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && locale-gen
COPY rootfs /
RUN /opt/bitnami/scripts/locales/add-extra-locales.sh
RUN /opt/bitnami/scripts/apache/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/moodle/postunpack.sh
RUN /opt/bitnami/scripts/mysql-client/postunpack.sh
@@ -41,7 +41,7 @@ ENV ALLOW_EMPTY_PASSWORD="no" \
APACHE_HTTPS_PORT_NUMBER="" \
APACHE_HTTP_PORT_NUMBER="" \
BITNAMI_APP_NAME="moodle" \
BITNAMI_IMAGE_VERSION="3.10.0-debian-10-r44" \
BITNAMI_IMAGE_VERSION="3.10.0-debian-10-r45" \
LANG="en_US.UTF-8" \
LANGUAGE="en_US:en" \
MARIADB_HOST="mariadb" \

View File

@@ -22,10 +22,10 @@
},
"moodle": {
"arch": "amd64",
"digest": "7a3a5ef96178b14eee24847aaf407a29ab7ea3831e8fb4812a96c43d4a29db6e",
"digest": "71ef46968d001246683f0bc992d2643f26a686276403e6eec58632a1b0b61f8b",
"distro": "debian-10",
"type": "NAMI",
"version": "3.10.0-0"
"version": "3.10.0-1"
},
"mysql-client": {
"arch": "amd64",

View File

@@ -302,7 +302,14 @@ moodle_install() {
#########################
moodle_upgrade() {
pushd "$MOODLE_BASE_DIR" >/dev/null
debug_execute php "admin/cli/upgrade.php" --non-interactive --allow-unstable
local -a moodle_upgrade_args=(
"${PHP_BIN_DIR}/php"
"admin/cli/upgrade.php"
"--non-interactive"
"--allow-unstable"
)
am_i_root && moodle_upgrade_args=("gosu" "$WEB_SERVER_DAEMON_USER" "${moodle_upgrade_args[@]}")
debug_execute "${moodle_install_args[@]}"
popd >/dev/null
}

View File

@@ -43,7 +43,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/).
* [`3`, `3-debian-10`, `3.10.0`, `3.10.0-debian-10-r44`, `latest` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-moodle/blob/3.10.0-debian-10-r44/3/debian-10/Dockerfile)
* [`3`, `3-debian-10`, `3.10.0`, `3.10.0-debian-10-r45`, `latest` (3/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-moodle/blob/3.10.0-debian-10-r45/3/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/moodle GitHub repo](https://github.com/bitnami/bitnami-docker-moodle).