From 2d491103045531566d3f8adc7e66f3c6d9bf64d7 Mon Sep 17 00:00:00 2001 From: Alex MacArthur Date: Fri, 13 Sep 2019 08:54:25 -0500 Subject: [PATCH] Set specific MySQL version to avoid SequelPro issues. --- mysql/README.md | 7 ------- mysql/docker-compose.yml | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/mysql/README.md b/mysql/README.md index 1c1f85c..c87b6ba 100644 --- a/mysql/README.md +++ b/mysql/README.md @@ -21,10 +21,3 @@ While inside the shell, run the following: ``` CREATE DATABASE mydatabase; ``` -## Using SequelPro? - -You might get a `Authentication plugin 'caching_sha2_password' cannot be loaded` error. If that's the case, [enter the MySQL shell](#enter-the-mysql-shell) and run the following command: - -```mysql -ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'password' -``` diff --git a/mysql/docker-compose.yml b/mysql/docker-compose.yml index 1d18f0a..0b79d03 100644 --- a/mysql/docker-compose.yml +++ b/mysql/docker-compose.yml @@ -2,7 +2,7 @@ version: '3' services: db: - image: mysql:latest + image: mysql:5.7.21 volumes: - dbdata:/var/lib/mysql restart: always