mirror of
https://github.com/bitnami/containers.git
synced 2026-03-10 06:59:47 +08:00
drupal: series 8
This commit is contained in:
4
bitnami/drupal/8/rootfs/apache-inputs.json
Normal file
4
bitnami/drupal/8/rootfs/apache-inputs.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"httpPort": "{{$global.env.APACHE_HTTP_PORT}}",
|
||||
"httpsPort": "{{$global.env.APACHE_HTTPS_PORT}}"
|
||||
}
|
||||
13
bitnami/drupal/8/rootfs/app-entrypoint.sh
Executable file
13
bitnami/drupal/8/rootfs/app-entrypoint.sh
Executable 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 -- "$@"
|
||||
9
bitnami/drupal/8/rootfs/drupal-inputs.json
Normal file
9
bitnami/drupal/8/rootfs/drupal-inputs.json
Normal 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}}"
|
||||
}
|
||||
Reference in New Issue
Block a user