Skip to content

Commit 2d49110

Browse files
committed
Set specific MySQL version to avoid SequelPro issues.
1 parent 15946db commit 2d49110

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

mysql/README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,3 @@ While inside the shell, run the following:
2121
```
2222
CREATE DATABASE mydatabase;
2323
```
24-
## Using SequelPro?
25-
26-
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:
27-
28-
```mysql
29-
ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'password'
30-
```

mysql/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
db:
5-
image: mysql:latest
5+
image: mysql:5.7.21
66
volumes:
77
- dbdata:/var/lib/mysql
88
restart: always

0 commit comments

Comments
 (0)