Files
nextcloud/conf/build/mysql/Dockerfile
T
sstolz f61547aace merge from feat docker refactor
commit 1c7f70e579
Author: Sébastien STOLZ <sebastien@e-declic.com>
Date:   Thu Dec 21 23:01:16 2017 +0100

    change mysql container name

commit 622f42e9b9
Author: Sébastien STOLZ <sebastien@e-declic.com>
Date:   Thu Dec 21 22:57:42 2017 +0100

    port conf modification

commit 186d94a7ec
Author: Sébastien STOLZ <sebastien@e-declic.com>
Date:   Tue Dec 19 17:27:38 2017 +0100

    Increase Makefile readability

commit b7a01bbeb3
Author: Sébastien STOLZ <sebastien@e-declic.com>
Date:   Tue Dec 19 17:27:21 2017 +0100

    Change backup/restore filename strategy

commit 6ffa535de0
Author: Sébastien STOLZ <sebastien@e-declic.com>
Date:   Tue Dec 19 16:33:48 2017 +0100

    refactor
2017-12-21 23:01:44 +01:00

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