Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Build/scripts/Start-Mysql.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function Start-Mysql {
$sqlConnectordll = Join-Path $PSScriptRoot 'MySqlConnector.dll'
Add-Type -Path $sqlConnectordll

$container = Start-Container -Image sqldatabase/mysql:8.0.25 -ContainerPort 3306
$container = Start-Container -Image sqldatabase/mysql:9.4 -ContainerPort 3306

$builder = New-Object -TypeName MySqlConnector.MySqlConnectionStringBuilder
$builder['Database'] = 'sqldatabasetest'
Expand Down
4 changes: 2 additions & 2 deletions Build/tasks/create-images-tasks.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ task BuildPgSqlDatabase {
}

task BuildMySqlDatabase {
$dockerfile = Join-Path $context 'image-mysql-8025.dockerfile'
$dockerfile = Join-Path $context 'image-mysql.dockerfile'
exec {
docker build `
--pull `
-f $dockerfile `
-t sqldatabase/mysql:8.0.25 `
-t sqldatabase/mysql:9.4 `
$context
}
}
Expand Down
3 changes: 1 addition & 2 deletions Sources/Docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3"
services:
mssql:
image: sqldatabase/mssql:2025
Expand All @@ -13,7 +12,7 @@ services:
- 5432:5432

mysql:
image: sqldatabase/mysql:8.0.25
image: sqldatabase/mysql:9.4
restart: always
ports:
- 3306:3306
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mysql:8.0.25
FROM mysql:9.4

ENV MYSQL_ROOT_PASSWORD=qwerty

Expand Down