generated from arafkarsh/ms-springboot-324-java-22-jakarta-ee-10
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild
executable file
·17 lines (15 loc) · 816 Bytes
/
build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# -------------------------------------------------------------------------------------------
# @author: Araf Karsh Hamid
# -------------------------------------------------------------------------------------------
# Build Docker Container
# ===========================================================================================
# Get the Org Name, Service Name, Version and Full Container Name
source serviceName
echo "---------------------------------------------------------------------------------------"
echo "Building the Container for $ORG/$SERVICE Service ..... "
echo "---------------------------------------------------------------------------------------"
cd src/docker
build $1 $2
cd ../../
echo "---------------------------------------------------------------------------------------"