mirror of
https://github.com/bitnami/containers.git
synced 2026-03-11 07:08:09 +08:00
Updated Drupal to 8.2.5-r0
This commit is contained in:
@@ -3,21 +3,21 @@ FROM gcr.io/stacksmith-images/minideb:jessie-r8
|
||||
MAINTAINER Bitnami <containers@bitnami.com>
|
||||
|
||||
ENV BITNAMI_APP_NAME=drupal \
|
||||
BITNAMI_IMAGE_VERSION=8.2.4-r2 \
|
||||
BITNAMI_IMAGE_VERSION=8.2.5-r0 \
|
||||
PATH=/opt/bitnami/php/bin:/opt/bitnami/drush:/opt/bitnami/mysql/bin/:$PATH
|
||||
|
||||
# System packages required
|
||||
RUN install_packages libssl1.0.0 libaprutil1 libapr1 libc6 libuuid1 libexpat1 libpcre3 libldap-2.4-2 libsasl2-2 libgnutls-deb0-28 zlib1g libp11-kit0 libtasn1-6 libnettle4 libhogweed2 libgmp10 libffi6 libxslt1.1 libtidy-0.99-0 libreadline6 libncurses5 libtinfo5 libsybdb5 libmcrypt4 libstdc++6 libpng12-0 libjpeg62-turbo libbz2-1.0 libxml2 libcurl3 libfreetype6 libicu52 libgcc1 libgcrypt20 libgssapi-krb5-2 liblzma5 libidn11 librtmp1 libssh2-1 libkrb5-3 libk5crypto3 libcomerr2 libgpg-error0 libkrb5support0 libkeyutils1
|
||||
|
||||
# Additional modules required
|
||||
RUN bitnami-pkg unpack apache-2.4.23-11 --checksum e4876fc1514082af221105319ddc8f069e7e2305dded70633bbf9a5973f2d9be
|
||||
RUN bitnami-pkg install php-5.6.28-1 --checksum e6a6a80ccd36d3e6c4edd4c6dd97d6247534584f023bf89dda6d13728138ca37
|
||||
RUN bitnami-pkg install libphp-5.6.28-1 --checksum c7a1df270fad99fbcff23506574ec1467bac4e0f0f6d0bd34bf310446ec5d7f5
|
||||
RUN bitnami-pkg install mysql-client-10.1.19-1 --checksum 2d946c8ee3e2e845f68a5cf3751d6477d88af194d263842797fe50a44414a173
|
||||
# Additional modules require
|
||||
RUN bitnami-pkg unpack apache-2.4.25-0 --checksum 8b46af7d737772d7d301da8b30a2770b7e549674e33b8a5b07480f53c39f5c3f
|
||||
RUN bitnami-pkg install php-5.6.29-0 --checksum 66b0c4957774cb45bcf4ef2755f434cc2e9aea5dbb3284859d28690bce35b632
|
||||
RUN bitnami-pkg install libphp-5.6.29-0 --checksum 29fc0f3a08ad7bc23423a1de714c4c598059b3d10e7e33e9f3dff9371e547c33
|
||||
RUN bitnami-pkg install mysql-client-10.1.20-0 --checksum 14d20929072b157b5e819deb440504ad0f33f583493b5adeb283c329ea58d513
|
||||
RUN bitnami-pkg install drush-8.0.5-1 --checksum cdea2d5067ef67bcda7e5cfe96798c2d6e0167578395fac2d7a5f92a814ecc69
|
||||
|
||||
# Install drupal
|
||||
RUN bitnami-pkg unpack drupal-8.2.4-0 --checksum d496f6fb00c35b79b3b22eddb0d60869eb406f34f1da4a3689eda963d9914c6c
|
||||
RUN bitnami-pkg unpack drupal-8.2.5-0 --checksum 0c38fa75567b2764a7f16d60a75ca651441ca5b0cec81edcf7c53c393207e312
|
||||
|
||||
COPY rootfs /
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Copyright (c) 2015-2016 Bitnami
|
||||
Copyright (c) 2017 Bitnami
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
||||
4
bitnami/drupal/rootfs/apache-inputs.json
Normal file
4
bitnami/drupal/rootfs/apache-inputs.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"httpPort": "{{$global.env.APACHE_HTTP_PORT}}",
|
||||
"httpsPort": "{{$global.env.APACHE_HTTPS_PORT}}"
|
||||
}
|
||||
@@ -14,6 +14,8 @@ function initialize {
|
||||
}
|
||||
|
||||
# Set default values
|
||||
export APACHE_HTTP_PORT=${APACHE_HTTP_PORT:-"80"}
|
||||
export APACHE_HTTPS_PORT=${APACHE_HTTPS_PORT:-"443"}
|
||||
export DRUPAL_USERNAME=${DRUPAL_USERNAME:-"user"}
|
||||
export DRUPAL_PASSWORD=${DRUPAL_PASSWORD:-"bitnami"}
|
||||
export DRUPAL_EMAIL=${DRUPAL_EMAIL:-"user@example.com"}
|
||||
@@ -21,8 +23,8 @@ export MARIADB_USER=${MARIADB_USER:-"root"}
|
||||
export MARIADB_HOST=${MARIADB_HOST:-"mariadb"}
|
||||
export MARIADB_PORT=${MARIADB_PORT:-"3306"}
|
||||
|
||||
if [[ "$1" == "nami" && "$2" == "start" ]]; then
|
||||
for module in apache php drupal; do
|
||||
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/init.sh" ]]; then
|
||||
for module in apache drupal; do
|
||||
initialize $module
|
||||
done
|
||||
echo "Starting application ..."
|
||||
|
||||
Reference in New Issue
Block a user