Merge pull request #1015 from ardziej/patch-1

Set Timezone
This commit is contained in:
Winfried 2017-06-13 19:24:19 +02:00 committed by GitHub
commit c35445b066

View File

@ -2,6 +2,14 @@ FROM mysql:5.7
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
#####################################
# Set Timezone
#####################################
ARG TZ=UTC
ENV TZ ${TZ}
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN chown -R mysql:root /var/lib/mysql/
ADD my.cnf /etc/mysql/conf.d/my.cnf