Merge pull request #303 from appleboy/patch-20

Revert #297 add mysql custom configuration file.
This commit is contained in:
Mahmoud Zalt 2016-09-11 03:14:18 -04:00 committed by GitHub
commit 1b88c2c9d8
3 changed files with 8 additions and 9 deletions

View File

@ -101,10 +101,7 @@ services:
### MySQL Container #########################################
mysql:
build:
context: ./mysql
args:
- MAX_ALLOWED_PACKET=20M
build: ./mysql
volumes_from:
- volumes_data
ports:

View File

@ -2,11 +2,7 @@ FROM mysql:latest
MAINTAINER Mahmoud Zalt <mahmoud@zalt.me>
ARG MAX_ALLOWED_PACKET=1M
ENV MAX_ALLOWED_PACKET ${MAX_ALLOWED_PACKET}
# Set MAX_ALLOWED_PACKET to /etc/mysql/my.cnf
RUN sed -i "s/^\[mysqld\]$/\[mysqld\]\nmax_allowed_packet = ${MAX_ALLOWED_PACKET}/g" /etc/mysql/my.cnf
ADD my.cnf /etc/mysql/conf.d/my.cnf
CMD ["mysqld"]

6
mysql/my.cnf Normal file
View File

@ -0,0 +1,6 @@
# The MySQL Client configuration file.
#
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html
[mysql]