37 lines
1.3 KiB
Bash
Executable File
37 lines
1.3 KiB
Bash
Executable File
#! /bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
if [ "$RDBMS" == 'mysql' ]; then
|
|
bash $DIR/../docker_db.sh mysql
|
|
elif [ "$RDBMS" == 'mariadb' ]; then
|
|
bash $DIR/../docker_db.sh mariadb
|
|
elif [ "$RDBMS" == 'postgresql' ]; then
|
|
bash $DIR/../docker_db.sh postgresql
|
|
elif [ "$RDBMS" == 'edb' ]; then
|
|
bash $DIR/../docker_db.sh edb
|
|
elif [ "$RDBMS" == 'db2' ]; then
|
|
bash $DIR/../docker_db.sh db2
|
|
elif [ "$RDBMS" == 'oracle' ]; then
|
|
bash $DIR/../docker_db.sh oracle
|
|
elif [ "$RDBMS" == 'oracle_atps_tls' ]; then
|
|
bash $DIR/../docker_db.sh oracle_atps_tls
|
|
elif [ "$RDBMS" == 'oracle_atps' ]; then
|
|
bash $DIR/../docker_db.sh oracle_atps
|
|
elif [ "$RDBMS" == 'oracle_db19c' ]; then
|
|
bash $DIR/../docker_db.sh oracle_db19c
|
|
elif [ "$RDBMS" == 'oracle_db21c' ]; then
|
|
bash $DIR/../docker_db.sh oracle_db21c
|
|
elif [ "$RDBMS" == 'oracle_db23c' ]; then
|
|
bash $DIR/../docker_db.sh oracle_db23c
|
|
elif [ "$RDBMS" == 'mssql' ]; then
|
|
bash $DIR/../docker_db.sh mssql
|
|
elif [ "$RDBMS" == 'sybase' ]; then
|
|
bash $DIR/../docker_db.sh sybase
|
|
elif [ "$RDBMS" == 'cockroachdb' ]; then
|
|
bash $DIR/../docker_db.sh cockroachdb
|
|
elif [ "$RDBMS" == 'hana' ]; then
|
|
bash $DIR/../docker_db.sh hana
|
|
elif [ "$RDBMS" == 'informix' ]; then
|
|
bash $DIR/../docker_db.sh informix
|
|
fi |