You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ryan J Schave
8f0a1adccb
|
3 years ago | |
---|---|---|
.. | ||
README.md | 3 years ago | |
docker-compose.yml | 3 years ago |
README.md
Microsoft SQL Server w/ Docker Compose
Super User Authentication
Username: sa
Password: StrongPassw0rd!
Enter the Container w/ Bash
docker-compose exec --user root db /bin/bash
Enter the sqlcmd Shell
docker-compose exec --user root db /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P 'StrongPassw0rd!'
Create a DB
While inside the sqlcmd shell, run the following:
CREATE DATABASE MyDatabase;
GO