First working dockerization

This commit is contained in:
vishalseshagiri
2017-07-18 09:00:58 +00:00
commit 40fbff8e77
8 changed files with 152 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
# MariaDB-specific config file.
# Read by /etc/mysql/my.cnf
[client]
# Default is Latin1, if you need UTF-8 set this (also in server section)
#default-character-set = utf8
[mysqld]
#
# * Character sets
#
# Default is Latin1, if you need UTF-8 set all this (also in client section)
#
#character-set-server = utf8
#collation-server = utf8_general_ci
#character_set_server = utf8
#collation_server = utf8_general_ci
# Import all .cnf files from configuration directory
!includedir /etc/mysql/mariadb.conf.d/
[mysqld]
innodb-file-format=barracuda
innodb-file-per-table=1
innodb-large-prefix=1
character-set-client-handshake = FALSE
character-set-server = utf8mb4
collation-server = utf8mb4_unicode_ci
[mysql]
default-character-set = utf8mb4

View File

@@ -0,0 +1,2 @@
[mysql]

View File

@@ -0,0 +1,4 @@
[mysqld_safe]
skip_log_error
syslog

View File

@@ -0,0 +1,5 @@
[mysqldump]
quick
quote-names
max_allowed_packet = 16M