From 0e3ae36b0c211bbdbe9cfc4a196dcc5859fe011b Mon Sep 17 00:00:00 2001 From: UNiXMIT <4117073+UNiXMIT@users.noreply.github.com> Date: Sat, 21 Sep 2024 10:40:50 +0100 Subject: [PATCH] Add -C opt to SQLCMD --- db/podman.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/podman.yml b/db/podman.yml index 3d3802a..2170770 100644 --- a/db/podman.yml +++ b/db/podman.yml @@ -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" @@ -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"