Commit b254d4a9 authored by Bo-Yi Wu's avatar Bo-Yi Wu

add mysql custom configuration file.

Signed-off-by: 's avatarBo-Yi Wu <appleboy.tw@gmail.com>
parent 2ed475f1
......@@ -101,10 +101,7 @@ services:
### MySQL Container #########################################
mysql:
build:
context: ./mysql
args:
- MAX_ALLOWED_PACKET=20M
build: ./mysql
volumes_from:
- volumes_data
ports:
......
......@@ -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"]
......
# The MySQL Client configuration file.
#
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html
[mysql]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment