Permalink
Newer
100755
25 lines (24 sloc)
737 Bytes
4
SKIP_DOWNLOAD=0
5
while getopts "nh?" opt; do
6
case $opt in
7
n) SKIP_DOWNLOAD=1 ;;
8
h | ?) echo "Options: -n skip download" ; exit 0 ;;
9
*) echo "Unknown option: $opt" ; exit 1 ;;
10
esac
11
done
12
if [ "$SKIP_DOWNLOAD" = "0" ]; then ./download-midpoint; fi
13
docker build --tag tier/midpoint:latest .
14
echo "---------------------------------------------------------------------------------------"
15
echo "The midPoint containers were successfully built. To start them, execute the following:"
16
echo ""
17
echo "(for simple demo)"
18
echo ""