mirror of
https://github.com/bitnami/containers.git
synced 2026-03-13 14:58:03 +08:00
54 lines
1.4 KiB
Bash
54 lines
1.4 KiB
Bash
#!/bin/bash
|
|
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
#
|
|
# Bitnami custom library
|
|
|
|
# shellcheck disable=SC1091
|
|
|
|
# Load Generic Libraries
|
|
. /opt/bitnami/scripts/liblog.sh
|
|
|
|
# Constants
|
|
BOLD='\033[1m'
|
|
|
|
# Functions
|
|
|
|
########################
|
|
# Print the welcome page
|
|
# Globals:
|
|
# DISABLE_WELCOME_MESSAGE
|
|
# BITNAMI_APP_NAME
|
|
# Arguments:
|
|
# None
|
|
# Returns:
|
|
# None
|
|
#########################
|
|
print_welcome_page() {
|
|
if [[ -z "${DISABLE_WELCOME_MESSAGE:-}" ]]; then
|
|
if [[ -n "$BITNAMI_APP_NAME" ]]; then
|
|
print_image_welcome_page
|
|
fi
|
|
fi
|
|
}
|
|
|
|
########################
|
|
# Print the welcome page for a Bitnami Docker image
|
|
# Globals:
|
|
# BITNAMI_APP_NAME
|
|
# Arguments:
|
|
# None
|
|
# Returns:
|
|
# None
|
|
#########################
|
|
print_image_welcome_page() {
|
|
local github_url="https://github.com/bitnami/containers"
|
|
|
|
info ""
|
|
info "${BOLD}Welcome to the Bitnami ${BITNAMI_APP_NAME} container${RESET}"
|
|
info "Subscribe to project updates by watching ${BOLD}${github_url}${RESET}"
|
|
info "Did you know there are enterprise versions of the Bitnami catalog? For enhanced secure software supply chain features, unlimited pulls from Docker, LTS support, or application customization, see Bitnami Premium or Tanzu Application Catalog. See https://www.arrow.com/globalecs/na/vendors/bitnami/ for more information."
|
|
info ""
|
|
}
|
|
|