We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04b03e0 commit 71962c5Copy full SHA for 71962c5
.template.Debian/docker-entrypoint.sh
@@ -136,7 +136,7 @@ docker_verify_minimum_env() {
136
}
137
138
# Creates and initializes the database directory
139
-docker_init_database_dir() {
+docker_create_db_directories() {
140
mkdir -p "$DATADIR"
141
142
mysql_note "Initializing database files"
@@ -273,7 +273,7 @@ _main() {
273
# If this is true then there's no database, and it needs to be initialized
274
if [ ! -d "$DATADIR/mysql" ]; then
275
docker_verify_minimum_env
276
- docker_init_database_dir "$@"
+ docker_create_db_directories "$@"
277
docker_init_client_command
278
279
mysql_note "Starting temporary server"
0 commit comments