Sign inSign up

bondas83/mysql-native-password

By bondas83

•Updated over 4 years ago

Image
0

100K+

Dockerfile
# Derived from official mysql image (our base image)
FROM mysql:8.0.28

RUN sed -i '/^\[mysqld\]$/a\default-authentication-plugin=mysql_native_password' /etc/mysql/my.cnf

WORKDIR /var/www/html/
COPY waitForMySQL.sh /var/www/html/
RUN chmod +rwx waitForMySQL.sh

CMD ["mysqld"]