Skip to content

Commit

Permalink
Fix docker-compose.mssql.yml
Browse files Browse the repository at this point in the history
Signed-off-by: nscuro <[email protected]>
  • Loading branch information
nscuro committed Sep 12, 2024
1 parent cdaf777 commit dd85630
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dev/docker-compose.mssql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ services:
ACCEPT_EULA: "Y"
MSSQL_SA_PASSWORD: "DTrack1234#"
healthcheck:
test: /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P "$$MSSQL_SA_PASSWORD" -Q "SELECT 1" -b -o /dev/null
test: /opt/mssql-tools18/bin/sqlcmd -C -S localhost -U sa -P "$$MSSQL_SA_PASSWORD" -Q "SELECT 1" -b -o /dev/null
interval: 15s
timeout: 3s
retries: 10
Expand All @@ -51,7 +51,8 @@ services:
mssql:
condition: service_healthy
command:
- /opt/mssql-tools/bin/sqlcmd
- /opt/mssql-tools18/bin/sqlcmd
- -C
- -S
- mssql
- -U
Expand Down

0 comments on commit dd85630

Please sign in to comment.