Jeśli napotkasz ten błąd, ale nadal chcesz używać MySQL v.8. Możesz to zrobić, mówiąc MySQL Server, aby używał starszej wtyczki uwierzytelniającej.
Twój plik do tworzenia będzie wyglądał tak:
# Use root/example as user/password credentials
version: '3.1'
services:
db:
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
MYSQL_ROOT_PASSWORD: 'pass'
MYSQL_DATABASE: 'db'
MYSQL_USER: 'user'
MYSQL_PASSWORD: 'pass'
adminer:
image: adminer
restart: always
ports:
- 8888:8080