File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
plugins/wpgraphql-logging Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -44,9 +44,9 @@ install_db() {
4444 # create database
4545 echo -e " $( status_message " Creating the database (if it does not exist)..." ) "
4646
47- RESULT=$( mysql -u $WORDPRESS_DB_USER --password=" $WORDPRESS_DB_PASSWORD " --skip-column-names -e " SHOW DATABASES LIKE '$WORDPRESS_DB_NAME '" $EXTRA )
47+ RESULT=$( mysql -u $WORDPRESS_DB_USER --password=" $WORDPRESS_DB_PASSWORD " --skip-column-names --ssl-mode=DISABLED - e " SHOW DATABASES LIKE '$WORDPRESS_DB_NAME '" $EXTRA )
4848 if [ " $RESULT " != $WORDPRESS_DB_NAME ]; then
49- mysqladmin create $WORDPRESS_DB_NAME --user=" $WORDPRESS_DB_USER " --password=" $WORDPRESS_DB_PASSWORD " $EXTRA
49+ mysqladmin create $WORDPRESS_DB_NAME --user=" $WORDPRESS_DB_USER " --password=" $WORDPRESS_DB_PASSWORD " --ssl-mode=DISABLED $EXTRA
5050 fi
5151}
5252
Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ services:
3737 - db:/var/lib/mysql
3838 networks :
3939 - plugin_network
40- command : --ssl=0 --require-secure-transport=OFF
4140
4241networks :
4342 plugin_network :
You can’t perform that action at this time.
0 commit comments