-
Notifications
You must be signed in to change notification settings - Fork 442
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pass extra mysqld flags to mysql_install_db #168
Conversation
Just tested on Docker for Mac, and it's fine without this (so that |
- `busybox`: 1.28.4 - `cassandra`: arm64v8 on 2.1 (docker-library/cassandra#147) - `ghost`: 1.23.0 - `haproxy`: 1.8.9 - `mariadb`: extra `mysqld` flags to `mysql_install_db` (MariaDB/mariadb-docker#168) - `mongo`: 3.6.5, 4.0.0-rc0, move 4.0-rc and 3.7 to Xenial (docker-library/mongo#275) - `php`: remove Alpine 3.4 (docker-library/php#650), add Stretch and Alpine 3.7 variants (docker-library/php#646) - `postgres`: 10.4, 9.3.23, 9.4.18, 9.5.13, 9.6.9 - `python`: remove Alpine 3.4, add Alpine 3.7 (docker-library/python#290) - `rocket.chat`: 0.64.2 - `ruby`: remove Alpine 3.4, add Alpine 3.7 (docker-library/ruby#210), remove 2.2 (EOL; https://www.ruby-lang.org/en/downloads/branches/)
This breaks when arguments like
The problem is actually with the
at line 150 of |
Ouch, that is unfortunate, but definitely an upstream bug.
|
This is a rather critical issue, what can be done, or at least, what is the workaround? |
@amq What I did as a workaround was pin the docker image tag to |
Same change as docker-library/mysql#358.
This will allow Docker for Windows/Mac users to add
--innodb-flush-method=fsync
and get MariaDB running with a datadir from the host.Addresses #138. related to docker-library/percona#42