forked from mooncn/v2ray-sspanel-v3-mod_Uim-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
install.sh
591 lines (545 loc) · 20 KB
/
install.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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
#!/usr/bin/env bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
# Current folder
cur_dir=`pwd`
# Color
red='\033[0;31m'
green='\033[0;32m'
yellow='\033[0;33m'
plain='\033[0m'
software=(Docker_Caddy Docker_Caddy_cloudflare Docker)
operation=(install update_config update_image logs)
# Make sure only root can run our script
[[ $EUID -ne 0 ]] && echo -e "[${red}Error${plain}] This script must be run as root!" && exit 1
#Check system
check_sys(){
local checkType=$1
local value=$2
local release=''
local systemPackage=''
if [[ -f /etc/redhat-release ]]; then
release="centos"
systemPackage="yum"
elif grep -Eqi "debian|raspbian" /etc/issue; then
release="debian"
systemPackage="apt"
elif grep -Eqi "ubuntu" /etc/issue; then
release="ubuntu"
systemPackage="apt"
elif grep -Eqi "centos|red hat|redhat" /etc/issue; then
release="centos"
systemPackage="yum"
elif grep -Eqi "debian|raspbian" /proc/version; then
release="debian"
systemPackage="apt"
elif grep -Eqi "ubuntu" /proc/version; then
release="ubuntu"
systemPackage="apt"
elif grep -Eqi "centos|red hat|redhat" /proc/version; then
release="centos"
systemPackage="yum"
fi
if [[ "${checkType}" == "sysRelease" ]]; then
if [ "${value}" == "${release}" ]; then
return 0
else
return 1
fi
elif [[ "${checkType}" == "packageManager" ]]; then
if [ "${value}" == "${systemPackage}" ]; then
return 0
else
return 1
fi
fi
}
# Get version
getversion(){
if [[ -s /etc/redhat-release ]]; then
grep -oE "[0-9.]+" /etc/redhat-release
else
grep -oE "[0-9.]+" /etc/issue
fi
}
# CentOS version
centosversion(){
if check_sys sysRelease centos; then
local code=$1
local version="$(getversion)"
local main_ver=${version%%.*}
if [ "$main_ver" == "$code" ]; then
return 0
else
return 1
fi
else
return 1
fi
}
get_char(){
SAVEDSTTY=`stty -g`
stty -echo
stty cbreak
dd if=/dev/tty bs=1 count=1 2> /dev/null
stty -raw
stty echo
stty $SAVEDSTTY
}
error_detect_depends(){
local command=$1
local depend=`echo "${command}" | awk '{print $4}'`
echo -e "[${green}Info${plain}] Starting to install package ${depend}"
${command} > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo -e "[${red}Error${plain}] Failed to install ${red}${depend}${plain}"
echo "Please visit: https://teddysun.com/486.html and contact."
exit 1
fi
}
# Pre-installation settings
pre_install_docker_compose(){
echo "Which Panel Do you use SSpanel 0, SSRpanel 1"
read -p "(v2ray_paneltype (Default 0):" v2ray_paneltype
[ -z "${v2ray_paneltype}" ] && v2ray_paneltype=0
echo
echo "---------------------------"
echo "v2ray_paneltype = ${v2ray_paneltype}"
echo "---------------------------"
echo
# Set ssrpanel node_id
echo "node_id"
read -p "(Default value: 0 ):" ssrpanel_node_id
[ -z "${ssrpanel_node_id}" ] && ssrpanel_node_id=0
echo
echo "---------------------------"
echo "node_id = ${ssrpanel_node_id}"
echo "---------------------------"
echo
echo "Which connection do you prefer 0 for webapi and 1 for mysql"
read -p "(v2ray_usemysql (Default 0):" v2ray_usemysql
[ -z "${v2ray_usemysql}" ] && v2ray_usemysql=0
echo
echo "---------------------------"
echo "v2ray_usemysql = ${v2ray_usemysql}"
echo "---------------------------"
echo
# Set ssrpanel_url
echo "Please sspanel_url, u can pass this setting if u use mysql"
read -p "(There is no default value please make sure you input the right thing):" ssrpanel_url
[ -z "${ssrpanel_url}" ]
echo
echo "---------------------------"
echo "ssrpanel_url = ${ssrpanel_url}"
echo "---------------------------"
echo
# Set ssrpanel key
echo "sspanel key u can pass this setting if u use mysql"
read -p "(There is no default value please make sure you input the right thing):" ssrpanel_key
[ -z "${ssrpanel_key}" ]
echo
echo "---------------------------"
echo "ssrpanel_key = ${ssrpanel_key}"
echo "---------------------------"
echo
# Set Setting if the node go downwith panel
echo "Setting Myqlhost, u can pass this setting u chosen use webapi"
read -p "(v2ray_downWithPanel :" v2ray_mysqlhost
[ -z "${v2ray_mysqlhost}" ] && v2ray_mysqlhost=""
echo
echo "---------------------------"
echo "v2ray_mysqlhost = ${v2ray_mysqlhost}"
echo "---------------------------"
echo
# Set Setting if the node go downwith panel
echo "Setting MysqlPort u can pass this setting u chosen use webapi"
read -p "(v2ray_mysqlport (Default 3306):" v2ray_mysqlport
[ -z "${v2ray_mysqlport}" ] && v2ray_mysqlport=3306
echo
echo "---------------------------"
echo "v2ray_mysqlport = ${v2ray_mysqlport}"
echo "---------------------------"
echo
# Set Setting if the node go downwith panel
echo "Setting MysqlUser u can pass this setting if u use webapi"
read -p "(v2ray_myqluser (Default root):" v2ray_myqluser
[ -z "${v2ray_myqluser}" ] && v2ray_myqluser="root"
echo
echo "---------------------------"
echo "v2ray_myqluser = ${v2ray_myqluser}"
echo "---------------------------"
echo
# Set Setting if the node go downwith panel
echo "Setting MysqlPassword u can pass this setting if u use webapi"
read -p "(v2ray_mysqlpassword (Default 1):" v2ray_mysqlpassword
[ -z "${v2ray_mysqlpassword}" ] && v2ray_mysqlpassword=1
echo
echo "---------------------------"
echo "v2ray_mysqlpassword = ${v2ray_mysqlpassword}"
echo "---------------------------"
echo
# Set Setting if the node go downwith panel
echo "Setting MysqlDbname u can pass this setting u chosen use webapi"
read -p "(v2ray_mysqldbname (Default sspanel):" v2ray_mysqldbname
[ -z "${v2ray_mysqldbname}" ] && v2ray_mysqldbname="sspanel"
echo
echo "---------------------------"
echo "v2ray_mysqldbname = ${v2ray_mysqldbname}"
echo "---------------------------"
echo
# Set ssrpanel speedtest function
echo "use sspanel speedtest"
read -p "(sspanel speedtest: Default (6) hours every time):" ssrpanel_speedtest
[ -z "${ssrpanel_speedtest}" ] && ssrpanel_speedtest=6
echo
echo "---------------------------"
echo "ssrpanel_speedtest = ${ssrpanel_speedtest}"
echo "---------------------------"
echo
# Set V2ray backend API Listen port
echo "Setting V2ray Grpc API Listen port"
read -p "(V2ray Grpc API Listen port(Default 2333):" v2ray_api_port
[ -z "${v2ray_api_port}" ] && v2ray_api_port=2333
echo
echo "---------------------------"
echo "V2ray Grpc API Listen port = ${v2ray_api_port}"
echo "---------------------------"
echo
# Set Setting if the node go downwith panel
echo "Setting if the node go downwith panel"
read -p "(v2ray_downWithPanel (Default 1):" v2ray_downWithPanel
[ -z "${v2ray_downWithPanel}" ] && v2ray_downWithPanel=1
echo
echo "---------------------------"
echo "v2ray_downWithPanel = ${v2ray_downWithPanel}"
echo "---------------------------"
echo
# Set Setting if the node go downwith panel
}
pre_install_caddy(){
# Set caddy v2ray domain
echo "caddy v2ray domain"
read -p "(There is no default value please make sure you input the right thing):" v2ray_domain
[ -z "${v2ray_domain}" ]
echo
echo "---------------------------"
echo "v2ray_domain = ${v2ray_domain}"
echo "---------------------------"
echo
# Set caddy v2ray path
echo "caddy v2ray path"
read -p "(Default path: /v2ray):" v2ray_path
[ -z "${v2ray_path}" ] && v2ray_path="/v2ray"
echo
echo "---------------------------"
echo "v2ray_path = ${v2ray_path}"
echo "---------------------------"
echo
# Set caddy v2ray tls email
echo "caddy v2ray tls email"
read -p "(No default ):" v2ray_email
[ -z "${v2ray_email}" ]
echo
echo "---------------------------"
echo "v2ray_email = ${v2ray_email}"
echo "---------------------------"
echo
# Set Caddy v2ray listen port
echo "caddy v2ray local listen port"
read -p "(Default port: 10550):" v2ray_local_port
[ -z "${v2ray_local_port}" ] && v2ray_local_port=10550
echo
echo "---------------------------"
echo "v2ray_local_port = ${v2ray_local_port}"
echo "---------------------------"
echo
# Set Caddy listen port
echo "caddy listen port"
read -p "(Default port: 443):" caddy_listen_port
[ -z "${caddy_listen_port}" ] && caddy_listen_port=443
echo
echo "---------------------------"
echo "caddy_listen_port = ${caddy_listen_port}"
echo "---------------------------"
echo
}
# Config docker
config_docker(){
echo "Press any key to start...or Press Ctrl+C to cancel"
char=`get_char`
cd ${cur_dir}
echo "install curl"
install_dependencies
echo "Writing docker-compose.yml"
curl -L https://raw.githubusercontent.com/rico93/pay-v2ray-sspanel-v3-mod_Uim-plugin/master/Docker/V2ray/docker-compose.yml > docker-compose.yml
sed -i "s|node_id:.*|node_id: ${ssrpanel_node_id}|" ./docker-compose.yml
sed -i "s|sspanel_url:.*|sspanel_url: '${ssrpanel_url}'|" ./docker-compose.yml
sed -i "s|key:.*|key: '${ssrpanel_key}'|" ./docker-compose.yml
sed -i "s|speedtest:.*|speedtest: ${ssrpanel_speedtest}|" ./docker-compose.yml
sed -i "s|api_port:.*|api_port: ${v2ray_api_port}|" ./docker-compose.yml
sed -i "s|downWithPanel:.*|downWithPanel: ${v2ray_downWithPanel}|" ./docker-compose.yml
sed -i "s|usemysql:.*|usemysql: ${v2ray_usemysql}|" ./docker-compose.yml
sed -i "s|PANELTYPE:.*|PANELTYPE: ${v2ray_paneltype}|" ./docker-compose.yml
sed -i "s|MYSQLHOST:.*|MYSQLHOST: ${v2ray_mysqlhost}|" ./docker-compose.yml
sed -i "s|MYSQLPORT:.*|MYSQLPORT: ${v2ray_mysqlport}|" ./docker-compose.yml
sed -i "s|MYSQLUSR:.*|MYSQLUSR: ${v2ray_myqluser}|" ./docker-compose.yml
sed -i "s|MYSQLPASSWD:.*|MYSQLPASSWD: ${v2ray_mysqlpassword}|" ./docker-compose.yml
sed -i "s|MYSQLDBNAME:.*|MYSQLDBNAME: ${v2ray_mysqldbname}|" ./docker-compose.yml
}
# Config caddy_docker
config_caddy_docker(){
echo "Press any key to start...or Press Ctrl+C to cancel"
char=`get_char`
cd ${cur_dir}
echo "install curl"
install_dependencies
curl -L https://raw.githubusercontent.com/rico93/pay-v2ray-sspanel-v3-mod_Uim-plugin/master/Docker/Caddy_V2ray/Caddyfile > Caddyfile
echo "Writing docker-compose.yml"
curl -L https://raw.githubusercontent.com/rico93/pay-v2ray-sspanel-v3-mod_Uim-plugin/master/Docker/Caddy_V2ray/docker-compose.yml > docker-compose.yml
sed -i "s|node_id:.*|node_id: ${ssrpanel_node_id}|" ./docker-compose.yml
sed -i "s|sspanel_url:.*|sspanel_url: '${ssrpanel_url}'|" ./docker-compose.yml
sed -i "s|key:.*|key: '${ssrpanel_key}'|" ./docker-compose.yml
sed -i "s|speedtest:.*|speedtest: ${ssrpanel_speedtest}|" ./docker-compose.yml
sed -i "s|api_port:.*|api_port: ${v2ray_api_port}|" ./docker-compose.yml
sed -i "s|downWithPanel:.*|downWithPanel: ${v2ray_downWithPanel}|" ./docker-compose.yml
sed -i "s|usemysql:.*|usemysql: ${v2ray_usemysql}|" ./docker-compose.yml
sed -i "s|PANELTYPE:.*|PANELTYPE: ${v2ray_paneltype}|" ./docker-compose.yml
sed -i "s|MYSQLHOST:.*|MYSQLHOST: ${v2ray_mysqlhost}|" ./docker-compose.yml
sed -i "s|MYSQLPORT:.*|MYSQLPORT: ${v2ray_mysqlport}|" ./docker-compose.yml
sed -i "s|MYSQLUSR:.*|MYSQLUSR: ${v2ray_myqluser}|" ./docker-compose.yml
sed -i "s|MYSQLPASSWD:.*|MYSQLPASSWD: ${v2ray_mysqlpassword}|" ./docker-compose.yml
sed -i "s|MYSQLDBNAME:.*|MYSQLDBNAME: ${v2ray_mysqldbname}|" ./docker-compose.yml
sed -i "s|V2RAY_DOMAIN=xxxx.com|V2RAY_DOMAIN=${v2ray_domain}|" ./docker-compose.yml
sed -i "s|V2RAY_PATH=/v2ray|V2RAY_PATH=${v2ray_path}|" ./docker-compose.yml
sed -i "s|V2RAY_EMAIL=xxxx@outlook.com|V2RAY_EMAIL=${v2ray_email}|" ./docker-compose.yml
sed -i "s|V2RAY_PORT=10550|V2RAY_PORT=${v2ray_local_port}|" ./docker-compose.yml
sed -i "s|V2RAY_OUTSIDE_PORT=443|V2RAY_OUTSIDE_PORT=${caddy_listen_port}|" ./docker-compose.yml
}
# Config caddy_docker
config_caddy_docker_cloudflare(){
# Set caddy cloudflare ddns email
echo "caddy cloudflare ddns email"
read -p "(No default ):" cloudflare_email
[ -z "${cloudflare_email}" ]
echo
echo "---------------------------"
echo "cloudflare_email = ${cloudflare_email}"
echo "---------------------------"
echo
# Set caddy cloudflare ddns key
echo "caddy cloudflare ddns key"
read -p "(No default ):" cloudflare_key
[ -z "${cloudflare_email}" ]
echo
echo "---------------------------"
echo "cloudflare_email = ${cloudflare_key}"
echo "---------------------------"
echo
echo
echo "Press any key to start...or Press Ctrl+C to cancel"
char=`get_char`
cd ${cur_dir}
echo "install curl first "
install_dependencies
echo "Starting Writing Caddy file and docker-compose.yml"
curl -L https://raw.githubusercontent.com/rico93/v2ray-sspanel-v3-mod_Uim-plugin/master/Docker/Caddy_V2ray/Caddyfile >Caddyfile
epcho "Writing docker-compose.yml"
curl -L https://raw.githubusercontent.com/rico93/v2ray-sspanel-v3-mod_Uim-plugin/master/Docker/Caddy_V2ray/docker-compose.yml >docker-compose.yml
sed -i "s|node_id:.*|node_id: ${ssrpanel_node_id}|" ./docker-compose.yml
sed -i "s|sspanel_url:.*|sspanel_url: '${ssrpanel_url}'|" ./docker-compose.yml
sed -i "s|key:.*|key: '${ssrpanel_key}'|" ./docker-compose.yml
sed -i "s|speedtest:.*|speedtest: ${ssrpanel_speedtest}|" ./docker-compose.yml
sed -i "s|api_port:.*|api_port: ${v2ray_api_port}|" ./docker-compose.yml
sed -i "s|downWithPanel:.*|downWithPanel: ${v2ray_downWithPanel}|" ./docker-compose.yml
sed -i "s|usemysql:.*|usemysql: ${v2ray_usemysql}|" ./docker-compose.yml
sed -i "s|PANELTYPE:.*|PANELTYPE: ${v2ray_paneltype}|" ./docker-compose.yml
sed -i "s|MYSQLHOST:.*|MYSQLHOST: ${v2ray_mysqlhost}|" ./docker-compose.yml
sed -i "s|MYSQLPORT:.*|MYSQLPORT: ${v2ray_mysqlport}|" ./docker-compose.yml
sed -i "s|MYSQLUSR:.*|MYSQLUSR: ${v2ray_myqluser}|" ./docker-compose.yml
sed -i "s|MYSQLPASSWD:.*|MYSQLPASSWD: ${v2ray_mysqlpassword}|" ./docker-compose.yml
sed -i "s|MYSQLDBNAME:.*|MYSQLDBNAME: ${v2ray_mysqldbname}|" ./docker-compose.yml
sed -i "s|V2RAY_DOMAIN=xxxx.com|V2RAY_DOMAIN=${v2ray_domain}|" ./docker-compose.yml
sed -i "s|V2RAY_PATH=/v2ray|V2RAY_PATH=${v2ray_path}|" ./docker-compose.yml
sed -i "s|V2RAY_EMAIL=xxxx@outlook.com|V2RAY_EMAIL=${v2ray_email}|" ./docker-compose.yml
sed -i "s|V2RAY_PORT=10550|V2RAY_PORT=${v2ray_local_port}|" ./docker-compose.yml
sed -i "s|V2RAY_OUTSIDE_PORT=443|V2RAY_OUTSIDE_PORT=${caddy_listen_port}|" ./docker-compose.yml
sed -i "s|# - CLOUDFLARE_EMAIL=xxxxxx@out.look.com| - CLOUDFLARE_EMAIL=${cloudflare_email}|" ./docker-compose.yml
sed -i "s|# - CLOUDFLARE_API_KEY=xxxxxxx| - CLOUDFLARE_API_KEY=${cloudflare_key}|" ./docker-compose.yml
sed -i "s|# dns cloudflare|dns cloudflare|" ./Caddyfile
}
# Install docker and docker compose
install_docker(){
echo -e "Starting installing Docker "
curl -fsSL https://get.docker.com -o get-docker.sh
bash get-docker.sh
echo -e "Starting installing Docker Compose "
curl -L https://github.com/docker/compose/releases/download/1.17.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
curl -L https://raw.githubusercontent.com/docker/compose/1.8.0/contrib/completion/bash/docker-compose > /etc/bash_completion.d/docker-compose
clear
echo "Start Docker "
service docker start
echo "Start Docker-Compose "
docker-compose pull
docker-compose up -d
echo
echo -e "Congratulations, V2ray server install completed!"
echo
echo "Enjoy it!"
echo
}
install_check(){
if check_sys packageManager yum || check_sys packageManager apt; then
if centosversion 5; then
return 1
fi
return 0
else
return 1
fi
}
install_select(){
clear
while true
do
echo "Which v2ray Docker you'd select:"
for ((i=1;i<=${#software[@]};i++ )); do
hint="${software[$i-1]}"
echo -e "${green}${i}${plain}) ${hint}"
done
read -p "Please enter a number (Default ${software[0]}):" selected
[ -z "${selected}" ] && selected="1"
case "${selected}" in
1|2|3|4)
echo
echo "You choose = ${software[${selected}-1]}"
echo
break
;;
*)
echo -e "[${red}Error${plain}] Please only enter a number [1-4]"
;;
esac
done
}
install_dependencies(){
if check_sys packageManager yum; then
echo -e "[${green}Info${plain}] Checking the EPEL repository..."
if [ ! -f /etc/yum.repos.d/epel.repo ]; then
yum install -y epel-release > /dev/null 2>&1
fi
[ ! -f /etc/yum.repos.d/epel.repo ] && echo -e "[${red}Error${plain}] Install EPEL repository failed, please check it." && exit 1
[ ! "$(command -v yum-config-manager)" ] && yum install -y yum-utils > /dev/null 2>&1
[ x"$(yum-config-manager epel | grep -w enabled | awk '{print $3}')" != x"True" ] && yum-config-manager --enable epel > /dev/null 2>&1
echo -e "[${green}Info${plain}] Checking the EPEL repository complete..."
yum_depends=(
curl
)
for depend in ${yum_depends[@]}; do
error_detect_depends "yum -y install ${depend}"
done
elif check_sys packageManager apt; then
apt_depends=(
curl
)
apt-get -y update
for depend in ${apt_depends[@]}; do
error_detect_depends "apt-get -y install ${depend}"
done
fi
echo -e "[${green}Info${plain}] Setting TimeZone to Shanghai"
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
date -s "$(curl -sI g.cn | grep Date | cut -d' ' -f3-6)Z"
}
#update_image
update_image_v2ray(){
echo "Shut down the current service"
docker-compose down
echo "Pulling Images"
docker-compose pull
echo "Start Service"
docker-compose up -d
}
#show last 100 line log
logs_v2ray(){
echo "Last 100 line logs"
docker-compose logs --tail 100
}
# Update config
update_config_v2ray(){
cd ${cur_dir}
echo "Shut down the current service"
docker-compose down
install_select
case "${selected}" in
1)
pre_install_docker_compose
pre_install_caddy
config_caddy_docker
;;
2)
pre_install_docker_compose
pre_install_caddy
config_caddy_docker_cloudflare
;;
3)
pre_install_docker_compose
config_docker
;;
*)
echo "Wrong number"
;;
esac
echo "Start Service"
docker-compose pull
docker-compose up -d
}
# remove config
# Install v2ray
install_v2ray(){
install_select
case "${selected}" in
1)
pre_install_docker_compose
pre_install_caddy
config_caddy_docker
;;
2)
pre_install_docker_compose
pre_install_caddy
config_caddy_docker_cloudflare
;;
3)
pre_install_docker_compose
config_docker
;;
*)
echo "Wrong number"
;;
esac
install_docker
}
# Initialization step
clear
while true
do
echo "Which operation you'd select:"
for ((i=1;i<=${#operation[@]};i++ )); do
hint="${operation[$i-1]}"
echo -e "${green}${i}${plain}) ${hint}"
done
read -p "Please enter a number (Default ${operation[0]}):" selected
[ -z "${selected}" ] && selected="1"
case "${selected}" in
1|2|3|4)
echo
echo "You choose = ${operation[${selected}-1]}"
echo
${operation[${selected}-1]}_v2ray
break
;;
*)
echo -e "[${red}Error${plain}] Please only enter a number [1-4]"
;;
esac
done