MySql config file permissions fix

Reason: [Warning] World-writable config file '/etc/mysql/docker-default.d/my.cnf' is ignored
This commit is contained in:
PeliCan 2019-09-21 15:56:09 +02:00 committed by GitHub
parent 861ea6b16e
commit 237e39b40d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,8 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone &
COPY my.cnf /etc/mysql/conf.d/my.cnf
RUN chmod 0444 /etc/mysql/conf.d/my.cnf
CMD ["mysqld"]
EXPOSE 3306