Use correct hostname
All checks were successful
Build and Push Docker Image / build (push) Successful in 2m3s

This commit is contained in:
2026-03-18 00:45:21 +01:00
parent 530e79d581
commit 9cb299706d

View File

@@ -6,7 +6,7 @@ echo "Applying SQL files..."
for migration in $(ls . | grep -E '\.sql$')
do
echo "Applying $migration."
/opt/mssql-tools/bin/sqlcmd -S mssql-server -U sa -C -P "$DSN_PASSWORD" -i $migration
/opt/mssql-tools/bin/sqlcmd -S mssql-service -U sa -C -P "$DSN_PASSWORD" -i $migration
done
echo "Database initialization complete."