Skip to content

Commit

Permalink
Add -C opt to SQLCMD
Browse files Browse the repository at this point in the history
  • Loading branch information
UNiXMIT committed Sep 21, 2024
1 parent 51e289e commit 0e3ae36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db/podman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
SA_PASSWORD: '{{ myPassword }}'
ACCEPT_EULA: 'Y'
MSSQL_COLLATION: 'SQL_Latin1_General_CP1_CI_AS'
healthcheck: '/opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P {{ myPassword }} -Q "SELECT 1" -b -o /dev/null'
healthcheck: '/opt/mssql-tools18/bin/sqlcmd -C -S localhost -U sa -P {{ myPassword }} -Q "SELECT 1" -b -o /dev/null'
healthcheck_interval: "10s"
healthcheck_retries: 10
healthcheck_start_period: "10s"
Expand Down Expand Up @@ -40,7 +40,7 @@
SA_PASSWORD: '{{ myPassword }}'
ACCEPT_EULA: 'Y'
MSSQL_COLLATION: 'SQL_Latin1_General_CP1_CI_AS'
healthcheck: '/opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P {{ myPassword }} -Q "SELECT 1" -b -o /dev/null'
healthcheck: '/opt/mssql-tools18/bin/sqlcmd -C -S localhost -U sa -P {{ myPassword }} -Q "SELECT 1" -b -o /dev/null'
healthcheck_interval: "10s"
healthcheck_retries: 10
healthcheck_start_period: "10s"
Expand Down

0 comments on commit 0e3ae36

Please sign in to comment.