File tree 1 file changed +18
-6
lines changed
1 file changed +18
-6
lines changed Original file line number Diff line number Diff line change 53
53
MYSQL_DATABASE : test
54
54
ports :
55
55
- 3306:3306
56
- options : --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
56
+ options : >-
57
+ --health-cmd="mysqladmin ping"
58
+ --health-interval=10s
59
+ --health-timeout=5s
60
+ --health-retries=3
57
61
58
62
postgres :
59
63
image : postgres
@@ -63,20 +67,28 @@ jobs:
63
67
POSTGRES_DB : test
64
68
ports :
65
69
- 5432:5432
66
- options : --health-cmd=pg_isready --health-interval=10s --health-timeout=5s --health-retries=3
70
+ options : >-
71
+ --health-cmd=pg_isready
72
+ --health-interval=10s
73
+ --health-timeout=5s
74
+ --health-retries=3
67
75
68
76
mssql :
69
- image : mcr.microsoft.com/mssql/server:2019-CU10-ubuntu-20.04
77
+ image : mcr.microsoft.com/mssql/server:2022-latest
70
78
env :
71
- SA_PASSWORD : 1Secure*Password1
79
+ MSSQL_SA_PASSWORD : 1Secure*Password1
72
80
ACCEPT_EULA : Y
73
81
MSSQL_PID : Developer
74
82
ports :
75
83
- 1433:1433
76
- options : --health-cmd="/opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U sa -P 1Secure*Password1 -Q 'SELECT @@VERSION'" --health-interval=10s --health-timeout=5s --health-retries=3
84
+ options : >-
85
+ --health-cmd="/opt/mssql-tools18/bin/sqlcmd -C -S 127.0.0.1 -U sa -P 1Secure*Password1 -Q 'SELECT @@VERSION'"
86
+ --health-interval=10s
87
+ --health-timeout=5s
88
+ --health-retries=3
77
89
78
90
oracle :
79
- image : gvenzl/oracle-xe:18
91
+ image : gvenzl/oracle-xe:21
80
92
env :
81
93
ORACLE_RANDOM_PASSWORD : true
82
94
APP_USER : ORACLE
You can’t perform that action at this time.
0 commit comments