dockerfiles icon indicating copy to clipboard operation
dockerfiles copied to clipboard

[FEATURE] Add support for mysql version 8

Open psycho0verload opened this issue 3 years ago • 1 comments

I thought it might be handy to be able to use mysql 8 for further developments.

I have switched from mysql 5 to 8. Consciously to version 8.0 because in future versions the support of the small detour via

command: --default-authentication-plugin=mysql_native_password

is omitted.

psycho0verload avatar Jul 22 '22 13:07 psycho0verload

Instead of downgrading to mysql_native_password, support for caching_sha2_password may be added by installing the mariadb-connector-c-dev apk package here:

https://github.com/invoiceninja/dockerfiles/blob/4b82f750fcf86012c6125172fcc0a154347d1da6/alpine/5/Dockerfile#L53-L60

Flightkick avatar Aug 08 '22 20:08 Flightkick

Instead of downgrading to mysql_native_password, support for caching_sha2_password may be added by installing the mariadb-connector-c-dev apk package here:

https://github.com/invoiceninja/dockerfiles/blob/4b82f750fcf86012c6125172fcc0a154347d1da6/alpine/5/Dockerfile#L53-L60

Instead of downgrading to mysql_native_password, support for caching_sha2_password may be added by installing the mariadb-connector-c-dev apk package here:

https://github.com/invoiceninja/dockerfiles/blob/4b82f750fcf86012c6125172fcc0a154347d1da6/alpine/5/Dockerfile#L53-L60

Yes you are right about that!

psycho0verload avatar Oct 02 '22 09:10 psycho0verload