This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
generated from gomu-gomu/starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildContainerImage.sh
executable file
·349 lines (302 loc) · 9.29 KB
/
buildContainerImage.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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
#!/bin/bash -e
#
# Since: April, 2016
# Author: [email protected]
# Description: Build script for building Oracle Database container images.
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
#
# Copyright (c) 2014,2023 Oracle and/or its affiliates.
#
usage() {
cat << EOF
Usage: buildContainerImage.sh -v [version] -t [image_name:tag] [-e | -s | -x | -f] [-i] [-p] [-b] [-o] [container build option]
Builds a container image for Oracle Database.
Parameters:
-v: version to build
Choose one of: $(for i in */; do echo -n "${i%%/} "; done)
-t: image_name:tag for the generated docker image
-e: creates image based on 'Enterprise Edition'
-s: creates image based on 'Standard Edition 2'
-x: creates image based on 'Express Edition'
-f: creates images based on Database 'Free'
-i: ignores the MD5 checksums
-p: creates and extends image using the patching extension
-b: build base stage only (Used by extensions)
-o: passes on container build option
* select one edition only: -e, -s, -x, or -f
LICENSE UPL 1.0
Copyright (c) 2014,2023 Oracle and/or its affiliates.
EOF
}
# Validate packages
checksumPackages() {
if hash md5sum 2>/dev/null; then
echo "Checking if required packages are present and valid..."
if ! md5sum -c "Checksum.${EDITION}${PLATFORM}"; then
echo "MD5 for required packages to build this image did not match!"
echo "Make sure to download missing files in folder ${VERSION}."
exit 1;
fi
else
echo "Ignored MD5 sum, 'md5sum' command not available.";
fi
}
# Check container runtime
checkContainerRuntime() {
CONTAINER_RUNTIME=$(which docker 2>/dev/null) ||
CONTAINER_RUNTIME=$(which podman 2>/dev/null) ||
{
echo "No docker or podman executable found in your PATH"
exit 1
}
if "${CONTAINER_RUNTIME}" info | grep -i -q buildahversion; then
checkPodmanVersion
else
checkDockerVersion
fi
}
# Check Podman version
checkPodmanVersion() {
# Get Podman version
echo "Checking Podman version."
PODMAN_VERSION=$("${CONTAINER_RUNTIME}" info --format '{{.host.BuildahVersion}}' 2>/dev/null ||
"${CONTAINER_RUNTIME}" info --format '{{.Host.BuildahVersion}}')
# Remove dot in Podman version
PODMAN_VERSION=${PODMAN_VERSION//./}
if [ -z "${PODMAN_VERSION}" ]; then
exit 1;
elif [ "${PODMAN_VERSION}" -lt "${MIN_PODMAN_VERSION//./}" ]; then
echo "Podman version is below the minimum required version ${MIN_PODMAN_VERSION}"
echo "Please upgrade your Podman installation to proceed."
exit 1;
fi
}
# Check Docker version
checkDockerVersion() {
# Get Docker Server version
echo "Checking Docker version."
DOCKER_VERSION=$("${CONTAINER_RUNTIME}" version --format '{{.Server.Version }}'|| exit 0)
# Remove dot in Docker version
DOCKER_VERSION=${DOCKER_VERSION//./}
if [ "${DOCKER_VERSION}" -lt "${MIN_DOCKER_VERSION//./}" ]; then
echo "Docker version is below the minimum required version ${MIN_DOCKER_VERSION}"
echo "Please upgrade your Docker installation to proceed."
exit 1;
fi;
}
##############
#### MAIN ####
##############
# Go into dockerfiles directory
cd "$(dirname "$0")"
# Parameters
ENTERPRISE=0
STANDARD=0
EXPRESS=0
FREE=0
PATCHING=0
BASE_ONLY=0
# Obtaining the latest version to build
VERSION="$(find -- *.*.* -type d | tail -n 1)"
SKIPMD5=0
declare -a BUILD_OPTS
MIN_DOCKER_VERSION="17.09"
MIN_PODMAN_VERSION="1.6.0"
DOCKERFILE="Dockerfile"
IMAGE_NAME="eoussama/oracle-database"
if [ "$#" -eq 0 ]; then
usage;
exit 1;
fi
while getopts "hesxfiv:t:o:pb" optname; do
case "${optname}" in
"h")
usage
exit 0;
;;
"i")
SKIPMD5=1
;;
"e")
ENTERPRISE=1
;;
"s")
STANDARD=1
;;
"x")
EXPRESS=1
;;
"f")
FREE=1
;;
"p")
PATCHING=1
;;
"b")
BASE_ONLY=1
;;
"v")
VERSION="${OPTARG}"
;;
"t")
IMAGE_NAME="${OPTARG}"
;;
"o")
eval "BUILD_OPTS=(${OPTARG})"
;;
"?")
usage;
exit 1;
;;
*)
# Should not occur
echo "Unknown error while processing options inside buildContainerImage.sh"
;;
esac
done
# Check that we have a container runtime installed
checkContainerRuntime
# Only 19c EE is supported on ARM64 platform
if [ "$(arch)" == "aarch64" ] || [ "$(arch)" == "arm64" ]; then
BUILD_OPTS=("--build-arg" "BASE_IMAGE=oraclelinux:8" "${BUILD_OPTS[@]}")
PLATFORM=".arm64"
if { [ "${VERSION}" == "19.3.0" ] && [ "${ENTERPRISE}" -eq 1 ]; }; then
BUILD_OPTS=("--build-arg" "INSTALL_FILE_1=LINUX.ARM64_1919000_db_home.zip" "${BUILD_OPTS[@]}")
else
echo "Currently only 19c enterprise edition is supported on ARM64 platform.";
exit 1;
fi;
fi;
# Which Edition should be used?
if [ $((ENTERPRISE + STANDARD + EXPRESS + FREE)) -gt 1 ]; then
usage
elif [ ${ENTERPRISE} -eq 1 ]; then
EDITION="ee"
elif [ ${STANDARD} -eq 1 ]; then
EDITION="se2"
elif [ ${EXPRESS} -eq 1 ]; then
if [ "${VERSION}" == "18.4.0" ]; then
EDITION="xe"
SKIPMD5=1
elif [ "${VERSION}" == "21.3.0" ]; then
EDITION="xe"
SKIPMD5=1
elif [ "${VERSION}" == "11.2.0.2" ]; then
EDITION="xe"
BUILD_OPTS=("--shm-size=1G" "${BUILD_OPTS[@]}")
else
echo "Version ${VERSION} does not have Express Edition available.";
exit 1;
fi;
elif [ ${FREE} -eq 1 ]; then
if [ "$(cut -f1 -d. <<< "$VERSION" )" -lt 23 ]; then
echo "Version ${VERSION} does not have Free Edition available.";
exit 1;
else
EDITION="free"
SKIPMD5=1
fi;
fi;
# Go into version folder
cd "${VERSION}" || {
echo "Could not find version directory '${VERSION}'";
exit 1;
}
# Which Dockerfile should be used?
if [ "${VERSION}" == "12.1.0.2" ] || [ "${VERSION}" == "11.2.0.2" ] || [ "${VERSION}" == "18.4.0" ] || [ "${VERSION}" == "23.3.0" ] || { [ "${VERSION}" == "21.3.0" ] && [ "${EDITION}" == "xe" ]; }; then
DOCKERFILE=$( if [[ -f "Containerfile.${EDITION}" ]]; then echo "Containerfile.${EDITION}"; else echo "${DOCKERFILE}.${EDITION}";fi )
fi;
echo "$DOCKERFILE"
# Oracle Database image Name
# If provided using -t build option then use it; Otherwise, create with version and edition
if [ -z "${IMAGE_NAME}" ]; then
IMAGE_NAME="oracle/database:${VERSION}-${EDITION}"
if [ ${BASE_ONLY} -eq 1 ]; then
IMAGE_NAME="oracle/database:${VERSION}-base"
fi
fi;
if [ ${BASE_ONLY} -eq 0 ] && [ ! "${SKIPMD5}" -eq 1 ]; then
checksumPackages
else
echo "Ignored MD5 checksum."
fi
echo "=========================="
echo "Container runtime info:"
"${CONTAINER_RUNTIME}" info
echo "=========================="
# Proxy settings
declare -a PROXY_SETTINGS
# shellcheck disable=SC2154
if [ "${http_proxy}" != "" ]; then
PROXY_SETTINGS=("${PROXY_SETTINGS[@]}" "--build-arg" "http_proxy=${http_proxy}")
fi
# shellcheck disable=SC2154
if [ "${https_proxy}" != "" ]; then
PROXY_SETTINGS=("${PROXY_SETTINGS[@]}" "--build-arg" "https_proxy=${https_proxy}")
fi
# shellcheck disable=SC2154
if [ "${ftp_proxy}" != "" ]; then
PROXY_SETTINGS=("${PROXY_SETTINGS[@]}" "--build-arg" "ftp_proxy=${ftp_proxy}")
fi
# shellcheck disable=SC2154
if [ "${no_proxy}" != "" ]; then
PROXY_SETTINGS=("${PROXY_SETTINGS[@]}" "--build-arg" "no_proxy=${no_proxy}")
fi
if [ ${#PROXY_SETTINGS[@]} -gt 0 ]; then
echo "Proxy settings were found and will be used during the build."
fi
if [ ${PATCHING} -eq 1 ]; then
# Setting SLIMMING to false to support patching
BUILD_OPTS=("${BUILD_OPTS[@]}" "--build-arg" "SLIMMING=false" )
fi
if [ ! -e "${DOCKERFILE}" ]; then
echo "ERROR: ${DOCKERFILE} doesn't exist"
exit 1
fi
# ############################# #
# BUILDING THE BASE STAGE IMAGE #
# ############################# #
if [ ${BASE_ONLY} -eq 1 ]; then
echo "Building base stage image '${IMAGE_NAME}' ..."
# BUILD THE BASE STAGE IMAGE (replace all environment variables)
"${CONTAINER_RUNTIME}" build --force-rm=true \
"${BUILD_OPTS[@]}" "${PROXY_SETTINGS[@]}" --target base \
-t "${IMAGE_NAME}" -f "${DOCKERFILE}" . || {
echo ""
echo "ERROR: Base stage image was NOT successfully created."
exit 1
}
# Remove dangling images (intermitten images with tag <none>)
yes | "${CONTAINER_RUNTIME}" image prune > /dev/null || true
exit
fi
# ################## #
# BUILDING THE IMAGE #
# ################## #
echo "Building image '${IMAGE_NAME}' ..."
# BUILD THE IMAGE (replace all environment variables)
BUILD_START=$(date '+%s')
"${CONTAINER_RUNTIME}" build --force-rm=true --no-cache=true \
"${BUILD_OPTS[@]}" "${PROXY_SETTINGS[@]}" --build-arg DB_EDITION="${EDITION}" \
-t "${IMAGE_NAME}" -f "${DOCKERFILE}" . || {
echo ""
echo "ERROR: Oracle Database container image was NOT successfully created."
echo "ERROR: Check the output and correct any reported problems with the build operation."
exit 1
}
# Remove dangling images (intermitten images with tag <none>)
yes | "${CONTAINER_RUNTIME}" image prune > /dev/null || true
BUILD_END=$(date '+%s')
BUILD_ELAPSED=$(( BUILD_END - BUILD_START ))
echo ""
echo ""
cat << EOF
Oracle Database container image for '${EDITION}' version ${VERSION} is ready to be extended:
--> ${IMAGE_NAME}
Build completed in ${BUILD_ELAPSED} seconds.
EOF
# EXTEND THE BUILT IMAGE BY APPLYING PATCHING EXTENSION
if [ ${PATCHING} -eq 1 ]; then
../../extensions/buildExtensions.sh -b "${IMAGE_NAME}" -t "${IMAGE_NAME}"-ext -v "${VERSION}" -x 'patching'
fi