Skip to content

Commit

Permalink
drush-ops/drush#5094 Use mysql, not mysqli for testing (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
alberto56 committed Mar 14, 2022
1 parent 5ae828c commit 0efdead
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ services:
mysql:
image: mariadb
environment:
MYSQL_DATABASE: drupal
MYSQL_ROOT_PASSWORD: drupal
MYSQL_ALLOW_EMPTY_PASSWORD: 'no'
MARIADB_ROOT_PASSWORD: drupal

# Specifying the network name makes it predictable on all environments,
# for example when we run browser tests.
Expand Down
2 changes: 1 addition & 1 deletion scripts/lib/docker-resources/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ do
fi
done

drush si -y --db-url "mysqli://root:drupal@mysql/drupal" standard
drush si -y --db-url "mysql://root:drupal@mysql/drupal" standard
drush en -y word_monitor word_monitor_search

0 comments on commit 0efdead

Please sign in to comment.