File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
services :
2
2
postgres :
3
- image : postgres:16-alpine
3
+ # see https://www.postgresql.org/docs/release/
4
+ image : postgres:17-alpine
4
5
ports :
5
6
- 5432:5432
6
7
environment :
@@ -14,7 +15,8 @@ services:
14
15
retries : 10
15
16
16
17
mysql :
17
- image : mysql:8
18
+ # see https://dev.mysql.com/doc/refman/9.2/en/mysql-releases.html
19
+ image : mysql:9
18
20
ports :
19
21
- 3306:3306
20
22
environment :
@@ -29,6 +31,7 @@ services:
29
31
retries : 10
30
32
31
33
mariadb :
34
+ # see https://mariadb.com/kb/en/mariadb-server-release-dates/
32
35
image : mariadb:11
33
36
ports :
34
37
- 3307:3306
@@ -45,14 +48,14 @@ services:
45
48
46
49
sqlserver :
47
50
# 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
49
52
ports :
50
53
- 1433:1433
51
54
environment :
52
55
ACCEPT_EULA : Y
53
56
MSSQL_SA_PASSWORD : LoremIpsum86
54
57
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
56
59
interval : 5s
57
60
timeout : 3s
58
61
retries : 20
You can’t perform that action at this time.
0 commit comments