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 PhpMyAdmin Username(at least 6 characters): ' pma_username
178
178
while [[ !$pma_username=~$db_regex ]]
179
179
do
180
-
echo"Try again"
180
+
echo"Try again (can only contain numerals 0-9, basic Latin letters, both lowercase and uppercase, dollar sign and underscore)"
181
181
read -p 'Enter PhpMyAdmin Username(at least 6 characters): ' pma_username
182
182
sleep 1
183
183
done
@@ -187,7 +187,7 @@ pma_password=""
187
187
read -p 'Enter PhpMyAdmin Password(at least 6 characters): ' pma_password
188
188
while [[ !$pma_password=~$password_regex ]]
189
189
do
190
-
echo"Try again"
190
+
echo"Try again (can only contain numerals 0-9, basic Latin letters, both lowercase and uppercase, dot, underscore and minus sign)"
191
191
read -p 'Enter PhpMyAdmin Password(at least 6 characters): ' pma_password
192
192
sleep 1
193
193
done
@@ -198,7 +198,7 @@ read -p 'Enter container local Timezone(default : America/Los_Angeles, to see th
198
198
:${local_timezone:=America/Los_Angeles}
199
199
while [[ !$local_timezone=~$local_timezone_regex ]]
200
200
do
201
-
echo"Try again"
201
+
echo"Try again (can only contain numerals 0-9, basic Latin letters, both lowercase and uppercase, positive, minus sign and underscore)"
202
202
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