Skip to content
This repository was archived by the owner on Jan 25, 2022. It is now read-only.

Commit 1937eff

Browse files
committed
Bugs squished.
1 parent 959e0f9 commit 1937eff

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

commands/readJSON

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ case $database in
6363
database=$d_database
6464
;;
6565

66+
'mariadb')
67+
database="${DEFAULT_PROJECT}/mariadb:5.5.59"
68+
;;
69+
6670
*-*)
6771
IFS='-' read -r -a state_array <<< "$database"
6872
database="${DEFAULT_PROJECT}/${state_array[0]}:${state_array[1]}"
@@ -74,6 +78,10 @@ case $webserver in
7478
webserver=$d_webserver
7579
;;
7680

81+
'apache'|'apache2')
82+
webserver="${DEFAULT_PROJECT}/apache:2.4.29"
83+
;;
84+
7785
*-*)
7886
IFS='-' read -r -a state_array <<< "$webserver"
7987
webserver="${DEFAULT_PROJECT}/${state_array[0]}:${state_array[1]}"
@@ -90,7 +98,7 @@ case $processvm in
9098
;;
9199

92100
*5.6.30|*5.6.32|*5.6.33)
93-
processvm="${DEFAULT_PROJECT}/php-fpm:7.0.29"
101+
processvm="${DEFAULT_PROJECT}/php-fpm:5.6.35"
94102
;;
95103

96104
*7.0.16|*7.0.25|*7.0.27)

0 commit comments

Comments
 (0)