[UI] Enable HTTPs default port
[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
34 while [ $# -gt 0 ]; do
35    if [[ $1 == *"--"* ]]; then
36         v="${1/--/}"
37         declare $v="$2"
38    fi
39    shift
40 done
41
42 if [ -z "$MYSQL_ROOT_PASSWORD" ]
43   then
44     echo "ERROR: You must specify the mysql database root password"
45     exit 1
46 fi
47
48 if [ -z "$MYSQL_PASSWORD" ]
49   then
50     echo "ERROR: You must specify the mysql database user password"
51     exit 1
52 fi
53
54 IMAGE="$REGISTRY"/"$NAME":"$TAG_PRE"-"$TAG_VER"
55 chmod 0444 "/$(pwd)/mysql.conf"
56 docker run --detach --name $CONTAINER_NAME -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
57 sleep 10