File tree Expand file tree Collapse file tree 4 files changed +21
-6
lines changed Expand file tree Collapse file tree 4 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 1
1
MIT License
2
2
3
3
Copyright (c) 2020 Andrea Pollastri
4
+ Edi Septriyanto
4
5
5
6
Permission is hereby granted, free of charge, to any person obtaining a copy
6
7
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 1
- max_execution_time =360
2
- upload_max_filesize =256M
3
- post_max_size =256M
1
+ display_errors = On
2
+ error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
3
+ date.timezone = UTC
4
+ max_execution_time = 360
5
+ memory_limit = 512M
6
+ post_max_size = 256M
7
+ upload_max_filesize = 256M
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ RUN apk update && apk upgrade \
47
47
gd \
48
48
gnupg \
49
49
igbinary \
50
+ imap \
50
51
imagick \
51
52
intl \
52
53
ldap \
Original file line number Diff line number Diff line change @@ -347,7 +347,7 @@ function ed_setup() {
347
347
}
348
348
349
349
function ed_reset() {
350
- echo -e " ${bgyellow}${black}${bold} >>> WARNING! ${reset} This command will reset container and database.${br} "
350
+ echo -e " ${bgyellow}${black}${bold} >>> WARNING! ${reset} This command will delete containers and database.${br} "
351
351
read -r -p " Are you sure to reset easydock application? (Y/n): " -n 1 -r
352
352
353
353
if [[ $REPLY =~ ^[Yy]$ ]]; then
@@ -362,6 +362,10 @@ function ed_reset() {
362
362
fi
363
363
}
364
364
365
+ function ed_remove() {
366
+ ed_reset
367
+ }
368
+
365
369
function ed_up() {
366
370
echo -e " ${blue} Wait...${reset}${br} "
367
371
docker-compose -f ./.easydock/docker-compose.yml --env-file=./.env.easydock down
@@ -487,6 +491,11 @@ function ed_cli_menu() {
487
491
ed_down
488
492
exit
489
493
;;
494
+ remove)
495
+ shift
496
+ ed_remove
497
+ exit
498
+ ;;
490
499
start)
491
500
shift
492
501
ed_start
@@ -497,7 +506,7 @@ function ed_cli_menu() {
497
506
ed_stop
498
507
exit
499
508
;;
500
- restart)
509
+ restart)
501
510
shift
502
511
ed_restart
503
512
exit
@@ -570,4 +579,4 @@ function ed_bootstrap() {
570
579
fi
571
580
}
572
581
573
- ed_bootstrap " $@ "
582
+ ed_bootstrap " $@ "
You can’t perform that action at this time.
0 commit comments