You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
read -p 'Enter Database Password(at least 6 characters): ' db_password
136
136
while [[ !$db_password=~$password_regex ]]
137
137
do
138
-
echo"Try again"
138
+
echo"Try again (can only contain numerals 0-9, basic Latin letters, both lowercase and uppercase, dot, underscore and minus sign)"
139
139
read -p 'Enter Database Password(at least 6 characters): ' db_password
140
140
sleep 1
141
141
done
@@ -145,7 +145,7 @@ db_name=""
145
145
read -p 'Enter Database Name(at least 6 characters): ' db_name
146
146
while [[ !$db_name=~$db_regex ]]
147
147
do
148
-
echo"Try again"
148
+
echo"Try again (can only contain numerals 0-9, basic Latin letters, both lowercase and uppercase, dollar sign and underscore)"
149
149
read -p 'Enter Database Name(at least 6 characters): ' db_name
150
150
sleep 1
151
151
done
@@ -186,7 +186,7 @@ read -p 'Enter container local Timezone(default : America/Los_Angeles, to see th
186
186
:${local_timezone:=America/Los_Angeles}
187
187
while [[ !$local_timezone=~$local_timezone_regex ]]
188
188
do
189
-
echo"Try again"
189
+
echo"Try again (can only contain numerals 0-9, basic Latin letters, both lowercase and uppercase, positive, minus sign and underscore)"
190
190
read -p 'Enter container local Timezone(default : America/Los_Angeles, to see the other local timezones, https://docs.diladele.com/docker/timezones.html): ' local_timezone
0 commit comments