Force the mysql version reported

- This is a workaround for https://github.com/terraform-providers/terraform-provider-mysql/issues/6#issuecomment-386830792
- MariaDB version responses are terrible 😠
This commit is contained in:
Nemo 2018-05-06 01:33:19 +05:30
parent 47e27ee658
commit 5f47a08bb5
1 changed files with 4 additions and 0 deletions

View File

@ -54,4 +54,8 @@ resource "docker_container" "mariadb" {
env = [
"MYSQL_ROOT_PASSWORD=${var.mysql_root_password}",
]
command = [
"--version=10.3-MariaDB",
]
}