25 lines
813 B
Bash
Executable File
25 lines
813 B
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" == 'mysql8' ]; then
|
|
bash $DIR/../docker_db.sh mysql_8_0
|
|
elif [ "$RDBMS" == 'mariadb' ]; then
|
|
bash $DIR/../docker_db.sh mariadb
|
|
elif [ "$RDBMS" == 'postgresql' ]; then
|
|
bash $DIR/../docker_db.sh postgresql
|
|
elif [ "$RDBMS" == 'postgresql_14' ]; then
|
|
bash $DIR/../docker_db.sh postgresql_14
|
|
elif [ "$RDBMS" == 'db2' ]; then
|
|
bash $DIR/../docker_db.sh db2
|
|
elif [ "$RDBMS" == 'oracle' ]; then
|
|
bash $DIR/../docker_db.sh oracle_18
|
|
elif [ "$RDBMS" == 'mssql' ]; then
|
|
bash $DIR/../docker_db.sh mssql
|
|
elif [ "$RDBMS" == 'hana' ]; then
|
|
bash $DIR/../docker_db.sh hana
|
|
elif [ "$RDBMS" == 'sybase' ]; then
|
|
bash $DIR/../docker_db.sh sybase
|
|
fi |