-
Notifications
You must be signed in to change notification settings - Fork 5.4k
/
Copy pathbuildDockerImage.sh
184 lines (150 loc) · 4.04 KB
/
buildDockerImage.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#!/bin/bash
#
# Copyright (c) 2020 Oracle and/or its affiliates.
#
# Licensed under the Universal Permissive License v 1.0 as shown at
# https://oss.oracle.com/licenses/upl.
#
# Description: script to build a Docker image for Oracle Unified Directory
#
usage() {
cat << EOF
Usage: buildDockerImage.sh -v [version] -d [domain-type] [-s]
Builds a Docker Image for Oracle Unified Directory
Parameters:
-h: view usage
-v: Release version to build. Required. E.g 12.2.1.4.0
-s: skips the MD5 check of packages
Copyright (c) 2020: Oracle and/or its affiliates.
Licensed under the Universal Permissive License v 1.0 as shown at
https://oss.oracle.com/licenses/upl.
EOF
exit 0
}
#=============================================================
checkFilePackages() {
echo "INFO: Checking if required packages are present..."
jarList=`grep -v -e "^#.*" oud.download | awk '{print $2}'`
for jar in ${jarList}; do
if [ -s ${jar} ]; then
echo "INFO: ${jar} found. Proceeding..."
else
cat > /dev/stderr <<EOF
ERROR: Install Distribution ${jar} not found in
`pwd`
The following are required to proceed.
EOF
cat oud.download
exit 1
fi
done
}
#=============================================================
checksumPackages() {
if [ "${SKIPMD5}" -eq 1 ]; then
echo "INFO: Skipped MD5 checksum as requested"
return
fi
echo "INFO: Checking if required packages are valid..."
md5sum -c oud.download 2> /dev/null
if [ "$?" -ne 0 ]; then
cat <<EOF
ERROR: MD5 for required packages to build the ${VERSION}
image did not match. Please make sure to download
or check the files in the ${VERSION} folder.
EOF
cat oud.download
echo " "
exit $?
fi
}
#Parameters
VERSION="NONE"
SKIPMD5=0
while getopts "hsv:" optname; do
case "$optname" in
"h")
usage
;;
"s")
SKIPMD5=1
;;
"v")
VERSION="$OPTARG"
;;
*)
# Should not occur
echo "Unknown error while processing options inside buildDockerImage.sh"
;;
esac
done
if [ "${VERSION}" = "NONE" ]; then
usage
fi
. ../setenv.sh
# OUD Image Name
IMAGE_NAME="oracle/oud:$VERSION"
DOCKERFILE_NAME="Dockerfile"
versionOK=false
if [ ${VERSION} = 12.2.1.4.0 ]
then
if [ ! -z "${DC_REGISTRY}" ]
then
IMAGE_NAME="${DC_REGISTRY}/oracle/oud:$VERSION"
fi
versionOK=true
THEDIR=${VERSION}
fi
if [ "${versionOK}" = "false" ]; then
echo "ERROR: Incorrect version ${VERSION} specified"
usage
else
if [ ! -d ${THEDIR} ]; then
echo "ERROR: Incorrect version ${THEDIR} directory not found"
usage
fi
fi
# Go into version folder
cd $VERSION
echo "version --> $VERSION "
checkFilePackages
checksumPackages
# Proxy settings
if [ "${http_proxy}" != "" ]; then
PROXY_SETTINGS="$PROXY_SETTINGS --build-arg http_proxy=${http_proxy}"
fi
if [ "${https_proxy}" != "" ]; then
PROXY_SETTINGS="$PROXY_SETTINGS --build-arg https_proxy=${https_proxy}"
fi
if [ "${ftp_proxy}" != "" ]; then
PROXY_SETTINGS="$PROXY_SETTINGS --build-arg ftp_proxy=${ftp_proxy}"
fi
if [ "${no_proxy}" != "" ]; then
PROXY_SETTINGS="$PROXY_SETTINGS --build-arg no_proxy=${no_proxy}"
fi
if [ "$PROXY_SETTINGS" != "" ]; then
echo "Proxy settings were found and will be used during build."
fi
# ################## #
# BUILDING THE IMAGE #
# ################## #
echo "Building image '$IMAGE_NAME' ..."
echo "Proxy Settings '$PROXY_SETTINGS'"
# BUILD THE IMAGE (replace all environment variables)
BUILD_START=$(date '+%s')
docker build --force-rm=true --no-cache=true $PROXY_SETTINGS -t $IMAGE_NAME -f $DOCKERFILE_NAME . || {
echo "There was an error building the image."
exit 1
}
BUILD_END=$(date '+%s')
BUILD_ELAPSED=`expr $BUILD_END - $BUILD_START`
echo ""
if [ $? -eq 0 ]; then
cat << EOF
Oracle Unified Directory Docker Image for version: $VERSION is ready to be extended.
--> $IMAGE_NAME
Build completed in $BUILD_ELAPSED seconds.
EOF
else
echo "Oracle Unified Directory Docker Image was NOT successfully created. Check the output and correct any reported problems with the docker build operation."
fi