drupal: series 8

This commit is contained in:
Sameer Naik
2017-02-20 15:59:59 +05:30
parent 90a039d711
commit e39ab8a665
8 changed files with 32 additions and 3 deletions

View File

@@ -0,0 +1,4 @@
{
"httpPort": "{{$global.env.APACHE_HTTP_PORT}}",
"httpsPort": "{{$global.env.APACHE_HTTPS_PORT}}"
}

View File

@@ -0,0 +1,13 @@
#!/bin/bash -e
. /opt/bitnami/base/functions
. /opt/bitnami/base/helpers
print_welcome_page
check_for_updates &
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/init.sh" ]]; then
nami_initialize apache php drupal
info "Starting drupal..."
fi
exec tini -- "$@"

View File

@@ -0,0 +1,9 @@
{
"username": "{{$global.env.DRUPAL_USERNAME}}",
"password": "{{$global.env.DRUPAL_PASSWORD}}",
"email": "{{$global.env.DRUPAL_EMAIL}}",
"databaseAdminUser": "{{$global.env.MARIADB_USER}}",
"databaseAdminPassword": "{{$global.env.MARIADB_PASSWORD}}",
"databaseServerHost": "{{$global.env.MARIADB_HOST}}",
"databaseServerPort": "{{$global.env.MARIADB_PORT}}"
}