First working dockerization
This commit is contained in:
33
conf/mariadb-conf.d/my.cnf
Normal file
33
conf/mariadb-conf.d/my.cnf
Normal 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
|
||||
|
||||
|
||||
2
conf/mariadb-conf.d/mysql.cnf
Normal file
2
conf/mariadb-conf.d/mysql.cnf
Normal file
@@ -0,0 +1,2 @@
|
||||
[mysql]
|
||||
|
||||
4
conf/mariadb-conf.d/mysqld_safe_syslog.cnf
Normal file
4
conf/mariadb-conf.d/mysqld_safe_syslog.cnf
Normal file
@@ -0,0 +1,4 @@
|
||||
[mysqld_safe]
|
||||
skip_log_error
|
||||
syslog
|
||||
|
||||
5
conf/mariadb-conf.d/mysqldump.cnf
Normal file
5
conf/mariadb-conf.d/mysqldump.cnf
Normal file
@@ -0,0 +1,5 @@
|
||||
[mysqldump]
|
||||
quick
|
||||
quote-names
|
||||
max_allowed_packet = 16M
|
||||
|
||||
Reference in New Issue
Block a user