[UI] Handling users and passwords
[validation.git] / docker / mysql / deploy.sh
1 #!/bin/bash
2 #
3 # Copyright (c) 2019 AT&T Intellectual Property.  All other rights reserved.
4 #
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
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
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.
16
17 # Use this script if the persistent storage does not exist
18
19 set -ex
20
21 DOCKER_VOLUME_NAME="akraino-validation-mysql"
22 # Container name
23 CONTAINER_NAME="akraino-validation-mysql"
24 # Container input variables
25 MYSQL_ROOT_PASSWORD=""
26 MYSQL_AKRAINO_PASSWORD=""
27 # Image data
28 REGISTRY=akraino
29 NAME=validation
30 TAG_PRE=mysql
31 TAG_VER=latest
32 MYSQL_HOST_PORT=3307
33
34 for ARGUMENT in "$@"
35 do
36     KEY=$(echo $ARGUMENT | cut -f1 -d=)
37     VALUE=$(echo $ARGUMENT | cut -f2 -d=)
38     case "$KEY" in
39             REGISTRY)              REGISTRY=${VALUE} ;;
40             NAME)    NAME=${VALUE} ;;
41             TAG_VER)    TAG_VER=${VALUE} ;;
42             TAG_PRE)    TAG_PRE=${VALUE} ;;
43             MYSQL_ROOT_PASSWORD)    MYSQL_ROOT_PASSWORD=${VALUE} ;;
44             MYSQL_AKRAINO_PASSWORD)    MYSQL_AKRAINO_PASSWORD=${VALUE} ;;
45             CONTAINER_NAME)    CONTAINER_NAME=${VALUE} ;;
46             MYSQL_HOST_PORT)    MYSQL_HOST_PORT=${VALUE} ;;
47             *)
48     esac
49 done
50
51 if [ -z "$MYSQL_ROOT_PASSWORD" ]
52   then
53     echo "ERROR: You must specify the mysql database root password"
54     exit 1
55 fi
56
57 if [ -z "$MYSQL_AKRAINO_PASSWORD" ]
58   then
59     echo "ERROR: You must specify the mysql database akraino user password"
60     exit 1
61 fi
62
63 IMAGE="$REGISTRY"/"$NAME":"$TAG_PRE"-"$TAG_VER"
64 chmod 0444 "/$(pwd)/mysql.conf"
65 docker run --detach --name $CONTAINER_NAME --publish $MYSQL_HOST_PORT:3306 -v $DOCKER_VOLUME_NAME:/var/lib/mysql -v "/$(pwd)/mysql.conf:/etc/mysql/conf.d/my.cnf" -e MYSQL_ROOT_PASSWORD="$MYSQL_ROOT_PASSWORD" -e MYSQL_DATABASE="akraino_bluvalui" -e MYSQL_USER="akraino" -e MYSQL_PASSWORD="$MYSQL_AKRAINO_PASSWORD" $IMAGE
66 sleep 10