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
downloaded newest drupal image with the command:
docker pull drupal
Set up container (linking to existing MySQL container):
docker run --name mydrupal --link mysql80:mysql -p 8080:80 -d drupal
Received following error when connected to docker container via web browser and at point where typing in dbusername/dbpassword/dbname:
SQLSTATE[42000]: Syntax error or access violation: 1231 Variable 'sql_mode' can't be set to the value of 'NO_AUTO_CREATE_USER'
Was able to fix the problem by performing the following edits in the drupal container: