|
1 |
| -# mssql-server-2014-express-windows |
2 |
| -This Dockerfile helps developers to get started using SQL Server 2014 Express in Windows Server Core Containers. The file downloads and installs SQL Server 2014 Express with the default setup parameters. |
3 |
| - |
4 |
| -Note: This dockerfile is based on Buc Rogers' work that can be found [here] (https://github.com/brogersyh/Dockerfiles-for-windows/tree/master/sqlexpress) |
5 |
| - |
6 |
| -### Contents |
7 |
| - |
8 |
| -[About this sample](#about-this-sample)<br/> |
9 |
| -[Before you begin](#before-you-begin)<br/> |
10 |
| -[Run this sample](#run-this-sample)<br/> |
11 |
| -[Sample details](#sample-details)<br/> |
12 |
| -[Disclaimers](#disclaimers)<br/> |
13 |
| -[Related links](#related-links)<br/> |
14 |
| - |
15 |
| -<a name=about-this-sample></a> |
16 |
| - |
17 |
| -## About this sample |
18 |
| - |
19 |
| -1. **Applies to:** SQL Server 2014 Express, Windows Server Technical Preview 4 or later |
20 |
| -5. **Authors:** Perry Skountrianos [perrysk-msft], Max Knor [knom] |
21 |
| - |
22 |
| -<a name=before-you-begin></a> |
23 |
| - |
24 |
| -## Before you begin |
25 |
| - |
26 |
| -To run this sample, you need the following prerequisites. |
27 |
| - |
28 |
| -**Software prerequisites:** |
29 |
| - |
30 |
| -You can run the container with the following command. |
31 |
| -(Note the you'll need Windows Server Core TP5 v10.0.14300.1000.) |
32 |
| - |
33 |
| -```` |
34 |
| -docker run -p 1433:1433 -v C:/temp/:C:/temp/ --env sa_password=<YOUR SA PASSWORD> --env attach_dbs="<DB-JSON-CONFIG>" -v microsoft/mssql-server-2014-express-windows |
35 |
| -```` |
36 |
| - |
37 |
| -- **-p HostPort:containerPort** is for port-mapping a container network port to a host port. |
38 |
| -- **-v HostPath:containerPath** is for mounting a folder from the host inside the container. |
39 |
| - |
40 |
| - This can be used for saving database outside of the container. |
41 |
| - |
42 |
| -<a name=run-this-sample></a> |
43 |
| - |
44 |
| -## Run this sample |
45 |
| - |
46 |
| -The image provides two environment variables to optionally set: </br> |
47 |
| -- sa_password: Sets the sa password and enables the sa login |
48 |
| -- attach_dbs: The configuration for attaching custom DBs (.mdf, .ldf files). |
49 |
| - |
50 |
| - This should be a JSON string, formed like the following (note the SINGLE quotes and everything in one line): |
51 |
| - ``` |
52 |
| -[{'dbName':'MaxDb','dbFiles':['C:\\temp\\maxtest.mdf','C:\\temp\\maxtest_log. |
53 |
| -ldf']},{'dbName':'PerryDb','dbFiles':['C:\\temp\\perrytest.mdf','C:\\temp\\perrytest_log. |
54 |
| -ldf']}] |
55 |
| - ``` |
56 |
| - There can be zero to many databases in the array. |
57 |
| - - dbName: The name of the database |
58 |
| - - dbFiles: An array of absolute paths to the .MDF and .LDF files. |
59 |
| - |
60 |
| - Can be one or many, note that the path has double backslashes for escaping! |
61 |
| - |
62 |
| -This example shows all parameters in action: |
63 |
| -``` |
64 |
| -docker run -p 1433:1433 -v C:/temp/:C:/temp/ --env attach_dbs="[{'dbName':'MaxTest','dbFiles':['C:\\temp\\maxtest.mdf','C:\\temp\\maxtest_log. |
65 |
| -ldf']}]" microsoft/mssql-server-2014-express-windows |
66 |
| -``` |
67 |
| - |
68 |
| -<a name=sample-details></a> |
69 |
| - |
70 |
| -## Sample details |
71 |
| - |
72 |
| -The Dockerfile downloads and installs SQL Server 2014 Express with the following default setup parameters that could be changed (if needed) after the image is installed. |
73 |
| -- Collation: SQL_Latin1_General_CP1_CI_AS |
74 |
| -- SQL Instance Name: SQLEXPRESS |
75 |
| -- Root Directory: C:\Program Files\Microsoft SQL Server\MSSQL12.SQLEXPRESS\MSSQL |
76 |
| -- Language: English (United Stated) |
77 |
| - |
78 |
| -<a name=disclaimers></a> |
79 |
| - |
80 |
| -## Disclaimers |
81 |
| -The code included in this sample is not intended to be a set of best practices on how to build scalable enterprise grade applications. This is beyond the scope of this quick start sample. |
82 |
| - |
83 |
| -<a name=related-links></a> |
84 |
| - |
85 |
| -## Related Links |
86 |
| -<!-- Links to more articles. Remember to delete "en-us" from the link path. --> |
87 |
| - |
88 |
| -For more information, see these articles: |
89 |
| -- [Windows Containers] (https://msdn.microsoft.com/en-us/virtualization/windowscontainers/about/about_overview) |
90 |
| -- [Windows-based containers: Modern app development with enterprise-grade control] (https://www.youtube.com/watch?v=Ryx3o0rD5lY&feature=youtu.be) |
91 |
| -- [Windows Containers: What, Why and How] (https://channel9.msdn.com/Events/Build/2015/2-704) |
92 |
| -- [SQL Server in Windows Containers] (https://blogs.msdn.microsoft.com/sqlserverstorageengine/2016/03/21/sql-server-in-windows-containers/#comments) |
| 1 | +# mssql-server-2014-express-windows |
| 2 | +This Dockerfile helps developers to get started using SQL Server 2014 Express in Windows Server Core Containers. The file downloads and installs SQL Server 2014 Express with the default setup parameters. |
| 3 | + |
| 4 | +Note: This dockerfile is based on Buc Rogers' work that can be found [here] (https://github.com/brogersyh/Dockerfiles-for-windows/tree/master/sqlexpress) |
| 5 | + |
| 6 | +### Contents |
| 7 | + |
| 8 | +[About this sample](#about-this-sample)<br/> |
| 9 | +[Before you begin](#before-you-begin)<br/> |
| 10 | +[Run this sample](#run-this-sample)<br/> |
| 11 | +[Sample details](#sample-details)<br/> |
| 12 | +[Disclaimers](#disclaimers)<br/> |
| 13 | +[Related links](#related-links)<br/> |
| 14 | + |
| 15 | +<a name=about-this-sample></a> |
| 16 | + |
| 17 | +## About this sample |
| 18 | + |
| 19 | +1. **Applies to:** SQL Server 2014 Express, Windows Server Technical Preview 4 or later |
| 20 | +5. **Authors:** Perry Skountrianos [perrysk-msft], Max Knor [knom] |
| 21 | + |
| 22 | +<a name=before-you-begin></a> |
| 23 | + |
| 24 | +## Before you begin |
| 25 | + |
| 26 | +To run this sample, you need the following prerequisites. |
| 27 | + |
| 28 | +**Software prerequisites:** |
| 29 | + |
| 30 | +You can run the container with the following command. |
| 31 | +(Note the you'll need Windows Server Core TP5 v10.0.14300.1000.) |
| 32 | + |
| 33 | +```` |
| 34 | +docker run -p 1433:1433 -v C:/temp/:C:/temp/ --env sa_password=<YOUR SA PASSWORD> --env attach_dbs="<DB-JSON-CONFIG>" microsoft/mssql-server-2014-express-windows |
| 35 | +```` |
| 36 | + |
| 37 | +- **-p HostPort:containerPort** is for port-mapping a container network port to a host port. |
| 38 | +- **-v HostPath:containerPath** is for mounting a folder from the host inside the container. |
| 39 | + |
| 40 | + This can be used for saving database outside of the container. |
| 41 | + |
| 42 | +- **-it** can be used to show the verbose output of the SQL startup script. |
| 43 | + |
| 44 | + Use this to debug the container in case of issues. |
| 45 | + |
| 46 | +<a name=run-this-sample></a> |
| 47 | + |
| 48 | +## Run this sample |
| 49 | + |
| 50 | +The image provides two environment variables to optionally set: </br> |
| 51 | +- **sa_password**: Sets the sa password and enables the sa login |
| 52 | +- **attach_dbs**: The configuration for attaching custom DBs (.mdf, .ldf files). |
| 53 | + |
| 54 | + This should be a JSON string, in the following format (note the use of SINGLE quotes!) |
| 55 | + ``` |
| 56 | + [ |
| 57 | + { |
| 58 | + 'dbName': 'MaxDb', |
| 59 | + 'dbFiles': ['C:\\temp\\maxtest.mdf', |
| 60 | + 'C:\\temp\\maxtest_log.ldf'] |
| 61 | + }, |
| 62 | + { |
| 63 | + 'dbName': 'PerryDb', |
| 64 | + 'dbFiles': ['C:\\temp\\perrytest.mdf', |
| 65 | + 'C:\\temp\\perrytest_log.ldf'] |
| 66 | + } |
| 67 | + ] |
| 68 | + ``` |
| 69 | + |
| 70 | + This is an array of databases, which can have zero to N databases. |
| 71 | + |
| 72 | + Each consisting of: |
| 73 | + - **dbName**: The name of the database |
| 74 | + - **dbFiles**: An array of one or many absolute paths to the .MDF and .LDF files. |
| 75 | + |
| 76 | + **Note:** |
| 77 | + The path has double backslashes for escaping! |
| 78 | + The path refers to files **within the container**. So make sure to include them in the image or mount them via **-v**! |
| 79 | + |
| 80 | + |
| 81 | +This example shows all parameters in action: |
| 82 | +``` |
| 83 | +docker run -p 1433:1433 -v C:/temp/:C:/temp/ --env attach_dbs="[{'dbName':'MaxTest','dbFiles':['C:\\temp\\maxtest.mdf','C:\\temp\\maxtest_log. |
| 84 | +ldf']}]" microsoft/mssql-server-2014-express-windows |
| 85 | +``` |
| 86 | + |
| 87 | +<a name=sample-details></a> |
| 88 | + |
| 89 | +## Sample details |
| 90 | + |
| 91 | +The Dockerfile downloads and installs SQL Server 2014 Express with the following default setup parameters that could be changed (if needed) after the image is installed. |
| 92 | +- Collation: SQL_Latin1_General_CP1_CI_AS |
| 93 | +- SQL Instance Name: SQLEXPRESS |
| 94 | +- Root Directory: C:\Program Files\Microsoft SQL Server\MSSQL12.SQLEXPRESS\MSSQL |
| 95 | +- Language: English (United Stated) |
| 96 | + |
| 97 | +<a name=disclaimers></a> |
| 98 | + |
| 99 | +## Disclaimers |
| 100 | +The code included in this sample is not intended to be a set of best practices on how to build scalable enterprise grade applications. This is beyond the scope of this quick start sample. |
| 101 | + |
| 102 | +<a name=related-links></a> |
| 103 | + |
| 104 | +## Related Links |
| 105 | +<!-- Links to more articles. Remember to delete "en-us" from the link path. --> |
| 106 | + |
| 107 | +For more information, see these articles: |
| 108 | +- [Windows Containers] (https://msdn.microsoft.com/en-us/virtualization/windowscontainers/about/about_overview) |
| 109 | +- [Windows-based containers: Modern app development with enterprise-grade control] (https://www.youtube.com/watch?v=Ryx3o0rD5lY&feature=youtu.be) |
| 110 | +- [Windows Containers: What, Why and How] (https://channel9.msdn.com/Events/Build/2015/2-704) |
| 111 | +- [SQL Server in Windows Containers] (https://blogs.msdn.microsoft.com/sqlserverstorageengine/2016/03/21/sql-server-in-windows-containers/#comments) |
0 commit comments