a58004ae8cf7ca33183631ae3d1ee9026d4d34fd
[sim/a1-interface.git] / near-rt-ric-simulator / test / STD_2.0.0 / build_and_start.sh
1 #!/bin/bash
2
3 #  ============LICENSE_START===============================================
4 #  Copyright (C) 2021 Nordix Foundation. All rights reserved.
5 #  ========================================================================
6 #  Licensed under the Apache License, Version 2.0 (the "License");
7 #  you may not use this file except in compliance with the License.
8 #  You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #  Unless required by applicable law or agreed to in writing, software
13 #  distributed under the License is distributed on an "AS IS" BASIS,
14 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #  See the License for the specific language governing permissions and
16 #  limitations under the License.
17 #  ============LICENSE_END=================================================
18 #
19
20 # Script to build and start the container
21 # Make sure to run the simulator with the same arg as this script
22
23 print_usage() {
24     echo "Usage: ./build_and_start.sh duplicate-check|ignore-duplicate "
25     exit 1
26 }
27
28 if [ $# -ne 1 ]; then
29     print_usage
30 fi
31 if [ $1 == "duplicate-check" ]; then
32     DUP_CHECK=1
33 elif  [ $1 == "ignore-duplicate" ]; then
34     DUP_CHECK=0
35 else
36     print_usage
37 fi
38
39 echo "Building image"
40 cd ../../
41
42 #Build the image
43 docker build -t a1test .
44
45 docker stop a1StdSimulator > /dev/null 2>&1
46 docker rm -f a1StdSimulator > /dev/null 2>&1
47
48 echo "Starting ric-sim"
49 #Run the container in interactive mode, unsecure port 8085, secure port 8185
50 docker run --rm -it -p 8085:8085 -p 8185:8185 -e A1_VERSION=STD_2.0.0 -e ALLOW_HTTP=true -e REMOTE_HOSTS_LOGGING=1 -e DUPLICATE_CHECK=$DUP_CHECK --volume "$PWD/certificate:/usr/src/app/cert" --name a1StdSimulator a1test