File tree 4 files changed +20
-0
lines changed
4 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ LUA_IMAGE=nickblah/lua
28
28
LUA_VERSION = 5.4.3
29
29
MKDOCS_VERSION = 1.16.0
30
30
MKDOCS_PACKAGES = " mkdocs-material mkdocs-material-extensions"
31
+ MSSQL_VERSION = 2022-latest
32
+ SA_PASSWORD = Dockerized1
31
33
MYSQL_VERSION = 8.0.28
32
34
NODE_VERSION = 17.7.2
33
35
PERL_VERSION = 5.34.1
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ dockerized <command>
22
22
- [ s3cmd] ( apps/s3cmd/README.md )
23
23
- Database
24
24
- dolt
25
+ - [ mssql] ( apps/mssql/README.md )
25
26
- mysql
26
27
- [ postgres] ( apps/postgres/README.md )
27
28
- psql
Original file line number Diff line number Diff line change
1
+ # Dockerized mssql (Microsoft SQL Server)
2
+
3
+ How to run Microsoft SQL Server within docker?
4
+
5
+ ``` shell
6
+ dockerized mssql
7
+ ```
8
+
9
+ - The default password is ` Dockerized1 `
10
+ - Override the password with the environment variable ` SA_PASSWORD `
11
+ - ` SA_PASSWORD=<password> dockerized mssql `
12
+ - Or change it in your ` dockerized.env ` file
Original file line number Diff line number Diff line change @@ -133,6 +133,11 @@ services:
133
133
lua :
134
134
image : " ${LUA_IMAGE}:${LUA_VERSION}"
135
135
entrypoint : [ "lua" ]
136
+ mssql :
137
+ image : " mcr.microsoft.com/mssql/server:${MSSQL_VERSION}"
138
+ environment :
139
+ SA_PASSWORD : " ${SA_PASSWORD:-}"
140
+ ACCEPT_EULA : " Y"
136
141
mysql :
137
142
image : " mysql:${MYSQL_VERSION}"
138
143
entrypoint : [ "mysql" ]
You can’t perform that action at this time.
0 commit comments