2020-11-19 09:50:16 -05:00
|
|
|
#! /bin/bash
|
|
|
|
|
2020-11-26 10:19:08 -05:00
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
|
2020-11-19 09:50:16 -05:00
|
|
|
if [ "$RDBMS" == 'mysql' ]; then
|
2022-09-20 03:26:06 -04:00
|
|
|
bash $DIR/../docker_db.sh mysql
|
2020-11-19 09:50:16 -05:00
|
|
|
elif [ "$RDBMS" == 'mariadb' ]; then
|
2020-11-26 10:19:08 -05:00
|
|
|
bash $DIR/../docker_db.sh mariadb
|
2022-09-20 03:26:06 -04:00
|
|
|
elif [ "$RDBMS" == 'postgresql' ]; then
|
|
|
|
bash $DIR/../docker_db.sh postgresql
|
2022-10-19 13:25:16 -04:00
|
|
|
elif [ "$RDBMS" == 'edb' ]; then
|
|
|
|
bash $DIR/../docker_db.sh edb
|
2020-11-19 09:50:16 -05:00
|
|
|
elif [ "$RDBMS" == 'db2' ]; then
|
2020-11-26 10:19:08 -05:00
|
|
|
bash $DIR/../docker_db.sh db2
|
2020-11-19 09:50:16 -05:00
|
|
|
elif [ "$RDBMS" == 'oracle' ]; then
|
2022-11-03 10:15:01 -04:00
|
|
|
bash $DIR/../docker_db.sh oracle
|
2024-02-14 05:29:21 -05:00
|
|
|
elif [ "$RDBMS" == 'oracle_atps_tls' ]; then
|
|
|
|
bash $DIR/../docker_db.sh oracle_atps_tls
|
2023-09-21 09:42:43 -04:00
|
|
|
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
|
2020-11-19 09:50:16 -05:00
|
|
|
elif [ "$RDBMS" == 'mssql' ]; then
|
2020-11-26 10:19:08 -05:00
|
|
|
bash $DIR/../docker_db.sh mssql
|
2021-06-23 08:56:57 -04:00
|
|
|
elif [ "$RDBMS" == 'sybase' ]; then
|
|
|
|
bash $DIR/../docker_db.sh sybase
|
2022-09-23 11:43:11 -04:00
|
|
|
elif [ "$RDBMS" == 'cockroachdb' ]; then
|
|
|
|
bash $DIR/../docker_db.sh cockroachdb
|
2022-11-03 10:15:01 -04:00
|
|
|
elif [ "$RDBMS" == 'hana' ]; then
|
|
|
|
bash $DIR/../docker_db.sh hana
|
2024-06-07 08:51:13 -04:00
|
|
|
elif [ "$RDBMS" == 'informix' ]; then
|
|
|
|
bash $DIR/../docker_db.sh informix
|
2021-04-06 08:24:13 -04:00
|
|
|
fi
|