Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 533 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 533 Bytes

Docker SQL

I wanted to learn how to start MSSQL in a Docker Container. Then once the container is up run through Evolve migration scripts so the DB can be scaffolded out.

How To

  1. Clone down this repo
  2. Run docker build -t docker-sql .
  3. Run docker run -p 1433:1433 -d docker-sql
  4. Wait about 30 seconds. If you watch the log you will want to wait until you see Done Migrating DB.
  5. Open up SSMS and connect to localhost using username sa and password Password!
  6. Profit