Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Death to SQL Server! Long live SQL Server! How ...

Avatar for Michael Jolley Michael Jolley
September 25, 2019

Death to SQL Server! Long live SQL Server! How containerized SQL Server makes development easier

Managing development databases can be tricky, especially if members of the team want to develop on a Mac or Linux device. Besides being bulky, installing SQL Server Express or Developer Edition can open needless attack vectors on your local machine. In this presentation, we learn how running SQL Server in Docker containers can help ensure a consistent development & testing experience for the entire team.

Avatar for Michael Jolley

Michael Jolley

September 25, 2019
Tweet

More Decks by Michael Jolley

Other Decks in Technology

Transcript

  1. docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=DOTnetConf2019!' --name sql1 -p 1433:1433

    -v D:/Sources/data:/var/opt/mssql/data -d mcr.microsoft.com/mssql/server:2017-latest p 1433:1433 • -v D:/Sources/data:/var/opt/mssql/data Formatted as: {host path} {container path}