File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed
Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ function Start-Mysql {
55 $sqlConnectordll = Join-Path $PSScriptRoot ' MySqlConnector.dll'
66 Add-Type - Path $sqlConnectordll
77
8- $container = Start-Container - Image sqldatabase/ mysql:8.0 . 25 - ContainerPort 3306
8+ $container = Start-Container - Image sqldatabase/ mysql:9.4 - ContainerPort 3306
99
1010 $builder = New-Object - TypeName MySqlConnector.MySqlConnectionStringBuilder
1111 $builder [' Database' ] = ' sqldatabasetest'
Original file line number Diff line number Diff line change @@ -36,12 +36,12 @@ task BuildPgSqlDatabase {
3636}
3737
3838task BuildMySqlDatabase {
39- $dockerfile = Join-Path $context ' image-mysql-8025 .dockerfile'
39+ $dockerfile = Join-Path $context ' image-mysql.dockerfile'
4040 exec {
4141 docker build `
4242 -- pull `
4343 -f $dockerfile `
44- - t sqldatabase/ mysql:8.0 . 25 `
44+ - t sqldatabase/ mysql:9.4 `
4545 $context
4646 }
4747}
Original file line number Diff line number Diff line change 1- version : " 3"
21services :
32 mssql :
43 image : sqldatabase/mssql:2025
@@ -13,7 +12,7 @@ services:
1312 - 5432:5432
1413
1514 mysql :
16- image : sqldatabase/mysql:8.0.25
15+ image : sqldatabase/mysql:9.4
1716 restart : always
1817 ports :
1918 - 3306:3306
Original file line number Diff line number Diff line change 1- FROM mysql:8.0.25
1+ FROM mysql:9.4
22
33ENV MYSQL_ROOT_PASSWORD=qwerty
44
You can’t perform that action at this time.
0 commit comments