docker-archive / communitytools-image2docker-win

305 stars 78 forks source link

Full SQL Server porting #13

Open ManoMarks opened 7 years ago

ManoMarks commented 7 years ago

Install and set-up SQL server and port over all data and settings

sixeyed commented 7 years ago

This should make use of ArtifactParam so the user can choose between different behaviours:

1. full database clone - copying MDF and LDF files and running CREATE DATABASE...FOR ATTACH in the Dockerfile;

  1. schema clone (no data) - using SqlPackage to extract a Dacpac containing the database schema, and using SqlPackage in the Dockerfile to deploy it.