2a6218460ca72ea9df0a08d9b4ddeaf66dda599e
[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_USER="akraino"
27 MYSQL_PASSWORD=""
28 # Image data
29 REGISTRY=akraino
30 NAME=validation
31 TAG_PRE=mysql
32 TAG_VER=latest
33 MYSQL_HOST_PORT=3307
34
35 while [ $# -gt 0 ]; do
36    if [[ $1 == *"--"* ]]; then
37         v="${1/--/}"
38         declare $v="$2"
39    fi
40    shift
41 done
42
43 if [ -z "$MYSQL_ROOT_PASSWORD" ]
44   then
45     echo "ERROR: You must specify the mysql database root password"
46     exit 1
47 fi
48
49 if [ -z "$MYSQL_PASSWORD" ]
50   then
51     echo "ERROR: You must specify the mysql database user password"
52     exit 1
53 fi
54
55 IMAGE="$REGISTRY"/"$NAME":"$TAG_PRE"-"$TAG_VER"
56 chmod 0444 "/$(pwd)/mysql.conf"
57 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="$MYSQL_USER" -e MYSQL_PASSWORD="$MYSQL_PASSWORD" $IMAGE
58 sleep 10