[UI] Support of HTTPS
[validation.git] / docker / mariadb / deploy_with_existing_persistent_storage.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 already exists and you want to use its data
18
19 set -ex
20
21 DOCKER_VOLUME_NAME="akraino-validation-mariadb"
22 # Container name
23 CONTAINER_NAME="akraino-validation-mariadb"
24 # Image data
25 REGISTRY=akraino
26 NAME=validation
27 TAG_PRE=mariadb
28 TAG_VER=latest
29 MARIADB_HOST_PORT=3307
30
31 for ARGUMENT in "$@"
32 do
33     KEY=$(echo $ARGUMENT | cut -f1 -d=)
34     VALUE=$(echo $ARGUMENT | cut -f2 -d=)
35     case "$KEY" in
36             REGISTRY)              REGISTRY=${VALUE} ;;
37             NAME)    NAME=${VALUE} ;;
38             TAG_VER)    TAG_VER=${VALUE} ;;
39             TAG_PRE)    TAG_PRE=${VALUE} ;;
40             CONTAINER_NAME)    CONTAINER_NAME=${VALUE} ;;
41             MARIADB_HOST_PORT)    MARIADB_HOST_PORT=${VALUE} ;;
42             *)
43     esac
44 done
45
46 IMAGE="$REGISTRY"/"$NAME":"$TAG_PRE"-"$TAG_VER"
47 docker run --detach --name $CONTAINER_NAME --publish $MARIADB_HOST_PORT:3306 -v $DOCKER_VOLUME_NAME:/var/lib/mysql -v "/$(pwd)/mariadb.conf:/etc/mysql/conf.d/my.cnf" $IMAGE
48 sleep 10