feat(data): remove subdir

### Description of Changes
  This is the last step in the four phase migration of the config
This commit is contained in:
Charlton Austin 2017-03-28 16:34:31 -04:00
parent dbb57f7001
commit c79711b6dc
2 changed files with 61 additions and 3 deletions

View file

@ -10,7 +10,6 @@ up_mysql() {
# Run a SQL database on port 3306 inside of Docker.
docker run --name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=password -d mysql
# Sleep for 25s to get MySQL get started.
echo 'Sleeping for 25...'
sleep 25
@ -27,7 +26,6 @@ up_mariadb() {
# Run a SQL database on port 3306 inside of Docker.
docker run --name mariadb -p 3306:3306 -e MYSQL_ROOT_PASSWORD=password -d mariadb
# Sleep for 25s to get MySQL get started.
echo 'Sleeping for 25...'
sleep 25
@ -44,7 +42,6 @@ up_percona() {
# Run a SQL database on port 3306 inside of Docker.
docker run --name percona -p 3306:3306 -e MYSQL_ROOT_PASSWORD=password -d percona
# Sleep for 20s
echo 'Sleeping for 25...'
sleep 25