4dba1a4ff06814a375fe5c1eceb0874210fd3a78
[vnfsdk/refrepo.git] / vnfmarket-be / deployment / docker / src / main / docker / docker-entrypoint.sh
1 #!/bin/bash
2 #
3 # Copyright 2016-2017 Huawei Technologies Co., Ltd.
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 #
18 # This file was auto-generated by gen-all-dockerfiles.sh; do not modify manually.
19 #
20 # vnf-sdk-marketplace/target/docker-entrypoint.sh
21 #
22
23 if [ -z "$SERVICE_IP" ]; then
24     export SERVICE_IP=`hostname -i`
25 fi
26 if [ -z "$POSTGRES_IP" ]; then
27     export POSTGRES_IP=127.0.0.1
28 fi
29
30 echo
31 echo Environment Variables:
32 echo "SERVICE_IP=$SERVICE_IP"
33
34
35 echo
36
37 # Configure service based on docker environment variables
38 ./instance-config.sh
39
40 # Start mysql
41 chown -R mysql /var/lib/mysql
42 chgrp -R mysql /var/lib/mysql
43 su mysql -c /usr/bin/mysqld_safe &
44
45
46 # Perform one-time config
47 if [ ! -e init.log ]; then
48     # Perform workarounds due to defects in release binary
49     ./instance-workaround.sh
50
51     # Init mysql; set root password
52     ./init-mysql.sh
53
54     # microservice-specific one-time initialization
55     ./instance-init.sh
56
57     date > init.log
58 fi
59
60 # Start the microservice
61 ./instance-run.sh
62