Skip to content

Commit

Permalink
mysql integration test fix: looks like we do need this (#5078)
Browse files Browse the repository at this point in the history
  • Loading branch information
thingscouldbeworse authored Jul 10, 2024
1 parent ad3ae40 commit c94b447
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions docker-compose.integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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`

0 comments on commit c94b447

Please sign in to comment.