Change PTL of VNFSDK to be Dan Xu
[vnfsdk/refrepo.git] / vnfmarket-be / deployment / docker / docker-refrepo / 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 # vnf-sdk-marketplace/target/docker-entrypoint.sh
18 #
19
20 umask 000 && sudo chmod +x /service/bin/*.sh /service/*.sh && mkdir -p /service/logs && mkdir -p /var/log/nginx/ && sudo chown -R vnfadmin:vnfadmin /var/log/nginx/ /service/ /opt/vtp /var/log && sudo chmod -R +w /service/ /opt/vtp /var/log && sudo touch /run/nginx.pid && sudo chown -R vnfadmin:vnfadmin /run/nginx.pid && chmod 644 /run/nginx.pid  && sudo chown -R vnfadmin:vnfadmin /var/log/nginx/ && sudo usermod -aG www-data vnfadmin && sudo chmod -R a+w /var/lib/nginx
21
22 if [ -z "$SERVICE_IP" ]; then
23     export SERVICE_IP=`hostname -i`
24 fi
25 if [ -z "$POSTGRES_SERVICE_HOST" ]; then
26     export POSTGRES_SERVICE_HOST=127.0.0.1
27 fi
28
29 echo
30 echo Environment Variables:
31 echo "SERVICE_IP=$SERVICE_IP"
32
33
34 echo
35
36 # Configure service based on docker environment variables
37 ./instance-config.sh
38
39
40
41 # Perform one-time config
42 if [ ! -e init.log ]; then
43     # Perform workarounds due to defects in release binary
44     ./instance-workaround.sh
45
46
47
48     # microservice-specific one-time initialization
49     ./instance-init.sh
50
51     date > init.log
52 fi
53
54 # Start the microservice
55 ./instance-run.sh