From c94b447d3ccc643eb1c1e734e0bbd4c6ec9d8cfe Mon Sep 17 00:00:00 2001 From: Kirk Hardy Date: Wed, 10 Jul 2024 11:53:43 -0400 Subject: [PATCH] mysql integration test fix: looks like we do need this (#5078) --- docker-compose.integration-tests.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/docker-compose.integration-tests.yml b/docker-compose.integration-tests.yml index 92ecf43762..38fb4c6610 100644 --- a/docker-compose.integration-tests.yml +++ b/docker-compose.integration-tests.yml @@ -22,6 +22,21 @@ services: ports: - "0.0.0.0:6432:5432" + mysql-test: + image: mysql:9 + platform: linux/amd64 + restart: always + environment: + - MYSQL_HOST=mysql_example + - MYSQL_DATABASE=mysql_example + - MYSQL_ROOT_PASSWORD=example + - MYSQL_USER=mysql_user + - MYSQL_PASSWORD=mysql_pw + expose: + - 3306 + ports: + - "3306:3306" + sqlserver-test: image: mcr.microsoft.com/azure-sql-edge:latest # Equivalent to SQL Server 2016 environment: @@ -31,5 +46,3 @@ services: - 1433 ports: - "0.0.0.0:1433:1433" - - # mysql integration test config lives at `docker/docker-compose.integration-mysql.yml` \ No newline at end of file