f61547aace
commit1c7f70e579Author: Sébastien STOLZ <sebastien@e-declic.com> Date: Thu Dec 21 23:01:16 2017 +0100 change mysql container name commit622f42e9b9Author: Sébastien STOLZ <sebastien@e-declic.com> Date: Thu Dec 21 22:57:42 2017 +0100 port conf modification commit186d94a7ecAuthor: Sébastien STOLZ <sebastien@e-declic.com> Date: Tue Dec 19 17:27:38 2017 +0100 Increase Makefile readability commitb7a01bbeb3Author: Sébastien STOLZ <sebastien@e-declic.com> Date: Tue Dec 19 17:27:21 2017 +0100 Change backup/restore filename strategy commit6ffa535de0Author: Sébastien STOLZ <sebastien@e-declic.com> Date: Tue Dec 19 16:33:48 2017 +0100 refactor
15 lines
265 B
Docker
15 lines
265 B
Docker
FROM mysql:5.7
|
|
|
|
ENV TERM=xterm
|
|
#ENV http_proxy 'http://192.168.64.1:8080/'
|
|
|
|
RUN apt-get clean \
|
|
&& apt-get update \
|
|
&& apt-get install -y lsof mlocate nano less
|
|
|
|
COPY mysql.cnf /etc/mysql/conf.d/
|
|
|
|
RUN apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/ \
|
|
&& updatedb
|