forked from oracle/docker-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setenv.sh
55 lines (48 loc) · 1.26 KB
/
setenv.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
#!/bin/sh
#
# 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.
#
#===============================================
# MUST: Customize this to your local env
#===============================================
#
# Directory where all domains/db data etc are
# kept. Directories will be created here
export DC_USERHOME=/scratch/${USER}/docker
# Registry names where requisite standard images
# can be found
export DC_REGISTRY=""
# Proxy Environment
# export NO_PROXY=""
# export no_proxy=""
# export http_proxy=""
# export https_proxy=""
# export HTTPS_PROXY=""
# export HTTP_PROXY=""
# export ftp_proxy=""
# export FTP_PROXY=""
#===============================================
exportComposeEnv() {
#
export DC_HOSTNAME=`hostname -f`
}
#===============================================
createDirs() {
echo "INFO: crateDirs"
}
#===============================================
printEnvDetails() {
echo "INFO: Environment variables"
env | grep -e "DC_" | sort
}
#===============================================
#== MAIN starts here
#===============================================
#
echo "INFO: Setting up OAM Docker Environment..."
exportComposeEnv
createDirs
printEnvDetails