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...