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.

599 B

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

Other Docs

Quickstart: Run SQL Server container images with Docker