Fix flags on MySQL container to actually be correct

This commit is contained in:
Dane Everitt 2021-07-11 10:44:20 -07:00
parent 5ea2907be8
commit c2190c5f92

10
Vagrantfile vendored
View File

@ -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 = {