File tree 1 file changed +9
-13
lines changed
OracleIdentityGovernance/dockerfiles
1 file changed +9
-13
lines changed Original file line number Diff line number Diff line change 13
13
usage () {
14
14
cat << EOF
15
15
16
- Usage: buildDockerImage.sh -v [version] -d [domain-type] [-s]
17
- Builds a Docker Image for Oracle OIM Suite .
16
+ Usage: buildDockerImage.sh -v [version]
17
+ Builds a Docker Image for Oracle Identity Governance
18
18
19
19
Parameters:
20
20
-h: view usage
21
- -v: Release version to build. Required. E.g 12.2.1.4.0
22
- -d: Domain type to be built. Required for building the domain -oim
21
+ -v: Release version to build. Required. Supported: 12.2.1.4.0
23
22
-s: skips the MD5 check of packages (DEFAULT)
24
23
25
- LICENSE CDDL 1.0 + GPL 2.0
26
- Copyright (c) 2016-2017: Oracle and/or its affiliates. All rights reserved.
24
+ LICENSE Universal Permissive License (UPL), Version 1.0
25
+ Copyright (c) 2020 Oracle and/or its affiliates.
26
+
27
27
EOF
28
28
exit 0
29
29
}
@@ -51,16 +51,12 @@ while getopts "hsdgiv:t:" optname; do
51
51
" s" )
52
52
SKIPMD5=1
53
53
;;
54
- " t" )
55
- DOMAINTYPE=" $OPTARG "
56
- echo " Domain Type selected is : " $DOMAINTYPE
57
- ;;
58
54
" v" )
59
55
VERSION=" $OPTARG "
60
56
;;
61
- * )
62
- # Should not occur
63
- echo " Unknown error while processing options inside buildDockerImage.sh"
57
+ * )
58
+ # Should not occur
59
+ echo " ERROR: Invalid argument. buildDockerImage.sh"
64
60
;;
65
61
esac
66
62
done
You can’t perform that action at this time.
0 commit comments