Skip to content

Instantly share code, notes, and snippets.

@woeterman94
Created January 31, 2022 07:45
Show Gist options
  • Save woeterman94/8fb4eb61e8e5f9bea9dfa428b642ba3c to your computer and use it in GitHub Desktop.
Save woeterman94/8fb4eb61e8e5f9bea9dfa428b642ba3c to your computer and use it in GitHub Desktop.
Run SQL server (2019) in docker
docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=W@ffles!123" --name sqlserver -p 1433:1433 -d mcr.microsoft.com/mssql/server:2019-latest
// username = SA
// password = W@ffles!123
@woeterman94
Copy link
Author

username = SA
password = W@ffles!123

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment