Switch to using Docker
This commit refactors all code in this project to make use of docker. This has not yet been documented properly.
This commit is contained in:
parent
9ece280e72
commit
76ef5d8e68
43 changed files with 943 additions and 545 deletions
14
distillery/mysql.sh
Normal file
14
distillery/mysql.sh
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#!/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 "$@"
|
||||
Loading…
Add table
Add a link
Reference in a new issue