mirror of
https://github.com/pterodactyl/development.git
synced 2025-12-10 20:07:09 -06:00
Fix flags on MySQL container to actually be correct
This commit is contained in:
parent
5ea2907be8
commit
c2190c5f92
10
Vagrantfile
vendored
10
Vagrantfile
vendored
@ -139,11 +139,11 @@ Vagrant.configure("2") do |config|
|
|||||||
d.image = "mysql:8"
|
d.image = "mysql:8"
|
||||||
d.ports = ["33060:3306"]
|
d.ports = ["33060:3306"]
|
||||||
d.cmd = [
|
d.cmd = [
|
||||||
"--sql_mode=no_engine_substitution",
|
"--sql-mode=no_engine_substitution",
|
||||||
"--innodb_buffer_pool_size=1G",
|
"--innodb-buffer-pool-size=1G",
|
||||||
"--innodb_log_file_size=256M",
|
"--innodb-log-file-size=256M",
|
||||||
"--innodb_flush_log_at_trx_commit=0",
|
"--innodb-flush-log-at-trx-commit=0",
|
||||||
"--lower_case_table_names=1"
|
"--lower-case-table-names=1"
|
||||||
]
|
]
|
||||||
d.volumes = ["#{vagrant_root}/.data/mysql:/var/lib/mysql:cached"]
|
d.volumes = ["#{vagrant_root}/.data/mysql:/var/lib/mysql:cached"]
|
||||||
d.env = {
|
d.env = {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user