Stephano Vogel
Stephano Vogel
This is an old one, but I can confirm that this is still an issue.
Watch out when using double-quotes in pair with strings that include at least one dollar-sign. Most shells will try to replace them since any `$...` will mean its an environment...
Please check my answer in [this issue](https://github.com/microsoft/mssql-docker/issues/200#issuecomment-1204593793). In short: It works, but your command to run the container does not satisfy SQL Server's requirements. 1. `SA_PASSWORD` is deprecated, switch to...
It doesn't like your sa password. > Unable to set system administrator password: Password validation failed. The password does not meet SQL Server password policy requirements because it is too...
https://github.com/getcursor/cursor/issues/870#issuecomment-1951864065 I've written a small shell script that does the same thing: ```shell #!/usr/bin/env bash CODE_WIN_PATH="$(which code)" CURSOR_WIN_PATH="$(which cursor)" # overwrite cursor script with the vscode one cp "$CODE_WIN_PATH" "$CURSOR_WIN_PATH"...
It seems that very small changed aren't noticed.
You should never ship .env files in a public repo. An .env.example file or something similar might have been usefull tho, but the effort to create an own one is...
> Hi I tried to configure mssql memoryi paramters with this command: > > ``` > /opt/mssql/bin/mssql-conf set memory.memorylimitmb 1024 > Warning: could not create log file for mssql-conf at...
The problem shouldn't be macOS or Docker Desktop - your `MSSQL_SA_PASSWORD` needs to be more safe as stated [in the docs](https://learn.microsoft.com/en-us/sql/linux/quickstart-install-connect-docker?view=sql-server-ver16&tabs=cli&pivots=cs1-bash): > Your password should follow the SQL Server default...
~~A reason could be one of two things:~~ ~~1. sqlcmd's path changed in a certain release. See the note [here](https://learn.microsoft.com/en-us/sql/linux/quickstart-install-connect-docker?view=sql-server-ver16&tabs=cli&pivots=cs1-bash):~~ > ~~Starting with SQL Server 2022 (16.x) CU 14 and...