Merge pull request #1968 from Ishodnikov/patch-1

Set my.cnf permissions
This commit is contained in:
Lan Phan
2019-10-25 23:31:17 +07:00
committed by GitHub

View File

@ -12,6 +12,8 @@ ENV TZ ${TZ}
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone && chown -R mysql:root /var/lib/mysql/
COPY my.cnf /etc/mysql/conf.d/my.cnf
RUN chmod -R 644 /etc/mysql/conf.d/my.cnf
CMD ["mysqld"]
EXPOSE 3306