This commit refactors all code in this project to make use of docker. This has not yet been documented properly.
14 lines
271 B
Bash
14 lines
271 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# disable the log
|
|
DISABLE_LOG=1
|
|
|
|
# read the lib/shared.sh
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
cd "$DIR"
|
|
source "$DIR/lib/lib.sh"
|
|
|
|
# wait for sql to come up
|
|
wait_for_sql > /dev/null
|
|
dockerized_mysql_interactive "$@"
|