[UI] UI enhancements
[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 # Directory on host in where database data are stored
20 HOST_STORAGE_DIR="/var/lib/mariadb"
21 # Container name
22 CONTAINER_NAME="akraino-validation-mariadb"
23 # Container input variables
24 MARIADB_ROOT_PASSWORD=""
25 # Image data
26 REGISTRY=akraino
27 NAME=validation
28 TAG_PRE=mariadb
29 TAG_VER=latest
30 MARIADB_HOST_PORT=3307
31
32 for ARGUMENT in "$@"
33 do
34     KEY=$(echo $ARGUMENT | cut -f1 -d=)
35     VALUE=$(echo $ARGUMENT | cut -f2 -d=)
36     case "$KEY" in
37             REGISTRY)              REGISTRY=${VALUE} ;;
38             NAME)    NAME=${VALUE} ;;
39             TAG_VER)    TAG_VER=${VALUE} ;;
40             TAG_PRE)    TAG_PRE=${VALUE} ;;
41             CONTAINER_NAME)    CONTAINER_NAME=${VALUE} ;;
42             MARIADB_HOST_PORT)    MARIADB_HOST_PORT=${VALUE} ;;
43             MARIADB_ROOT_PASSWORD)    MARIADB_ROOT_PASSWORD=${VALUE} ;;
44             *)
45     esac
46 done
47
48 IMAGE="$REGISTRY"/"$NAME":"$TAG_PRE"-"$TAG_VER"
49 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" $IMAGE
50 sleep 10
51 docker exec $CONTAINER_NAME /bin/bash -c 'rm -rf /docker-entrypoint-initdb.d/*.sql'