Skip to content

Commit 71efdd6

Browse files
authored
Merge pull request #227 from go-gormigrate/update-deps
integration-test: update db images
2 parents ff54b36 + 0ce4719 commit 71efdd6

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

integration-test/docker-compose.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
services:
22
postgres:
3-
image: postgres:16-alpine
3+
# see https://www.postgresql.org/docs/release/
4+
image: postgres:17-alpine
45
ports:
56
- 5432:5432
67
environment:
@@ -14,7 +15,8 @@ services:
1415
retries: 10
1516

1617
mysql:
17-
image: mysql:8
18+
# see https://dev.mysql.com/doc/refman/9.2/en/mysql-releases.html
19+
image: mysql:9
1820
ports:
1921
- 3306:3306
2022
environment:
@@ -29,6 +31,7 @@ services:
2931
retries: 10
3032

3133
mariadb:
34+
# see https://mariadb.com/kb/en/mariadb-server-release-dates/
3235
image: mariadb:11
3336
ports:
3437
- 3307:3306
@@ -45,14 +48,14 @@ services:
4548

4649
sqlserver:
4750
# see https://hub.docker.com/r/microsoft/mssql-server
48-
image: mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-22.04
51+
image: mcr.microsoft.com/mssql/server:2022-CU17-ubuntu-22.04
4952
ports:
5053
- 1433:1433
5154
environment:
5255
ACCEPT_EULA: Y
5356
MSSQL_SA_PASSWORD: LoremIpsum86
5457
healthcheck:
55-
test: /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P "$${MSSQL_SA_PASSWORD}" -Q "SELECT 1" -b -o /dev/null
58+
test: /opt/mssql-tools18/bin/sqlcmd -S localhost -C -U sa -P "$${MSSQL_SA_PASSWORD}" -Q "SELECT 1" -b -o /dev/null
5659
interval: 5s
5760
timeout: 3s
5861
retries: 20

0 commit comments

Comments
 (0)