You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
432 B
Plaintext
13 lines
432 B
Plaintext
[mysqld]
|
|
pid-file = /var/run/mysqld/mysqld.pid
|
|
socket = /var/run/mysqld/mysqld.sock
|
|
# Where the database files are stored inside the container
|
|
datadir = /var/lib/mysql
|
|
|
|
# My application special configuration
|
|
max_allowed_packet = 32M
|
|
sql-mode = 'STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION'
|
|
|
|
# Accept connections from any IP address
|
|
bind-address = 0.0.0.0
|