-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-install-helper.sh
executable file
·224 lines (211 loc) · 6.06 KB
/
docker-install-helper.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
#!/usr/bin/env bash
set -e
# package remover
function package-remover () {
echo " |- removing package.."
case $1 in
"-debian")
apt-get remove -y docker docker.io runc
repo-updater $1
;;
"-fedora")
yum remove -y docker \
docker-client \
docker-client-latest \
docker-common \
docker-latest \
docker-latest-logrotate \
docker-logrotate \
docker-selinux \
docker-engine-selinux \
docker-engine
;;
"-ubuntu")
apt-get remove -y docker docker-engine docker.io containerd runc || echo "some package is unavailable!"
repo-updater $1
;;
*)
echo " |-- no option on package remover"
;;
esac
echo " |- removing done!"
}
# setup repository
function repo-config () {
echo " |- configure repository.."
case $1 in
"-debian")
apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
gnupg2 \
software-properties-common
curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -
apt-key fingerprint 0EBFCD88
;;
"-fedora")
yum install -y yum-utils \
device-mapper-persistent-data \
lvm2
;;
"-ubuntu")
apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
apt-key fingerprint 0EBFCD88
;;
*) echo " |-- no option repo config"
esac
echo " |- configurating done"
}
# repository updater
function repo-updater () {
echo " |- updating repository"
case $1 in
"-debian")
apt-get update -y
;;
"-fedora")
yum update -y
;;
"-ubuntu")
apt-get update -y
;;
*) echo " |-- no option on repo updater"
esac
echo " |- updating repositoy done"
}
# setup stable repository
function repo-stable () {
echo " |- configure stable repository"
case $1 in
"-debian")
add-apt-repository -y \
"deb [arch=amd64] https://download.docker.com/linux/debian \
$(lsb_release -cs) \
stable"
;;
"-fedora")
yum-config-manager -y \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
;;
"-ubuntu")
add-apt-repository -y \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
;;
*) echo " |-- no option on repo stable"
esac
echo " |- configure done"
}
# docker installation
function docker-install () {
install=" |- installing docker"
case $1 in
"-debian")
repo-updater $1
apt-get install -y docker-ce
;;
"-fedora")
yum install docker-ce -y
;;
"-ubuntu")
repo-updater $1
apt-get install -y docker-ce
;;
*) echo " |-- no option on docker install"
esac
echo " |- installing done"
}
# service enable / disable docker service
function endis-docker () {
function start-enable-dockerd () {
if [[ systemctl-check == "installed" ]]; then
echo " |- enable docker service.." \
&& systemctl enable docker \
&& echo " |-- enable successfull!" \
echo "|- starting docker service.." \
&& systemctl start docker \
&& echo " |-- starting successfull." \
|| echo " |-- starting failed!"
else
echo " |- starting docker service.." \
&& service docker start \
&& echo " |-- staring successfull!" \
|| echo " |-- starting failed!"
fi
}
if [[ -z $1 ]]; then
echo " |-- error no option parameter on enable disable docker function.."
else
if [[ $1 = "start" ]]; then
start-enable-dockerd && echo " |- starting done."
else
echo " |- option : [start]"
fi
fi
}
# numeric checker
function is_number () {
regex='^[0-9]+$'
if ! [[ $1 =~ $regex ]];then
echo false
else
echo true
fi
}
# docker-compose getter file
function docker-compose-install () {
target_dir=/usr/local/bin/docker-compose
target_link_download="https://github.com/docker/compose/releases/download/1.23.2/docker-compose-$(uname -s)-$(uname -m)"
echo "|- getting started to get docker-compose binary file.."
if [[ $(curl -L $target_link_download -o $target_dir > /dev/null 2>&1 ;echo $?) -gt 0 ]]; then
echo "|-- error : $?"
else
echo "|-- successful get file docker-compose installer"
ls $target_dir | grep docker-compose
echo "|- making permission to execute"
if [[ $(chmod +x /usr/local/bin/docker-compose > /dev/null 2>&1 ;echo $?) -gt 0 ]]; then
echo "|-- changing permission failed"
else
echo "|-- changing permission success"
echo "|- linking to /usr/bin/"
if [[ $(ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose > /dev/null 2>&1 ;echo $?) -gt 0 ]]; then
echo "|-- error linking binary file"
else
echo "|-- docker-compose binary linked"
fi
fi
echo "|- install docker-compose done"
fi
}
# docker-compose checker is Exist
function ishas-docker-compose () {
function is-exist-dcfile () {
ls $1 | grep docker-compose > /dev/null ;echo $?
}
is_exist_local=$(is-exist-dcfile /usr/local/bin/)
echo $is_exist_local
is_exist_global=$(is-exist-dcfile /usr/bin/)
echo $is_exist_global
if [[ $is_exist_local -eq 0 ]] || [[ $is_exist_global -eq 0 ]]; then
echo true # exist
else
echo false # doesnt exist
fi
}
# systemctl checker
function systemctl-check () {
status = $(systemctl -h > /dev/null 2>&1 ;echo $?)
if [[ $status -gt 0 ]]; then
echo "not-installed"
else
echo "installed"
fi
}