#!/bin/bash # Copyright VMware, Inc. # SPDX-License-Identifier: APACHE-2.0 # shellcheck disable=SC1091 set -o errexit set -o nounset set -o pipefail # set -o xtrace # Uncomment this line for debugging purposes # Load libraries . /opt/bitnami/mongodb/scripts/libmongodb.sh # Load environment . /opt/bitnami/mongodb/scripts/mongodb-env.sh # We add the copy from default config in the entrypoint to not break users # bypassing the setup.sh logic. If the file already exists do not overwrite (in # case someone mounts a configuration file in /opt/bitnami/mongodb/conf) debug "Copying files from $MONGODB_DEFAULT_CONF_DIR to $MONGODB_CONF_DIR" cp -nr "$MONGODB_DEFAULT_CONF_DIR"/. "$MONGODB_CONF_DIR" if [[ "$1" = "/opt/bitnami/mongodb/scripts/run.sh" ]]; then info "** Starting MongoDB setup **" /opt/bitnami/mongodb/scripts/setup.sh info "** MongoDB setup finished! **" fi echo "" exec "$@"