3 # Copyright (c) 2019 AT&T Intellectual Property. All other rights reserved.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 # http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 # Directory on host in where database data will be stored
18 HOST_STORAGE_DIR="/var/lib/mariadb"
20 CONTAINER_NAME="akraino-validation-mariadb"
21 # Container input variables
22 MARIADB_ROOT_PASSWORD=""
24 UI_AKRAINO_PASSWORD=""
30 MARIADB_HOST_PORT=3307
34 KEY=$(echo $ARGUMENT | cut -f1 -d=)
35 VALUE=$(echo $ARGUMENT | cut -f2 -d=)
37 REGISTRY) REGISTRY=${VALUE} ;;
38 NAME) NAME=${VALUE} ;;
39 TAG_VER) TAG_VER=${VALUE} ;;
40 TAG_PRE) TAG_PRE=${VALUE} ;;
41 MARIADB_ROOT_PASSWORD) MARIADB_ROOT_PASSWORD=${VALUE} ;;
42 CONTAINER_NAME) CONTAINER_NAME=${VALUE} ;;
43 MARIADB_HOST_PORT) MARIADB_HOST_PORT=${VALUE} ;;
44 UI_ADMIN_PASSWORD) UI_ADMIN_PASSWORD=${VALUE} ;;
45 UI_AKRAINO_PASSWORD) UI_AKRAINO_PASSWORD=${VALUE} ;;
50 if [ -z "$MARIADB_ROOT_PASSWORD" ]
52 echo "ERROR: You must specify the mariadb database root password"
56 if [ -z "$UI_ADMIN_PASSWORD" ]
58 echo "ERROR: You must specify the password of the UI admin user"
62 if [ -z "$UI_AKRAINO_PASSWORD" ]
64 echo "ERROR: You must specify the password for the UI akraino user"
68 IMAGE="$REGISTRY"/"$NAME":"$TAG_PRE"-"$TAG_VER"
69 docker run --detach --name $CONTAINER_NAME --publish $MARIADB_HOST_PORT:3306 --volume $HOST_STORAGE_DIR:/var/lib/mysql -v "/$(pwd)/mariadb.conf:/etc/mysql/conf.d/my.cnf" -e MYSQL_ROOT_PASSWORD="$MARIADB_ROOT_PASSWORD" -e UI_ADMIN_PASSWORD="$UI_ADMIN_PASSWORD" -e UI_AKRAINO_PASSWORD="$UI_AKRAINO_PASSWORD" $IMAGE
71 docker exec $CONTAINER_NAME /bin/bash -c 'sed -i 's/admin_password/'"$UI_ADMIN_PASSWORD"'/g' /docker-entrypoint-initdb.d/EcompSdkDMLMySql_2_4_OS.sql ; sed -i 's/akraino_password/'"$UI_AKRAINO_PASSWORD"'/g' /docker-entrypoint-initdb.d/akraino-blueprint_validation_db.sql; continue=`ps aux | grep mysql` ; while [ -z "$continue" ]; do continue=`ps aux | grep mysql`; sleep 5; done ; sleep 10 ;'