You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -73,13 +73,13 @@ You can then simple call `docker-compose up` instead of the long `docker run...`
73
73
## Dockerfile
74
74
The Dockerfile defines how the image will be built. Each of the commands in the Dockerfile is described below.
75
75
76
-
The Dockerfile defines the base image (the first layer) using the official Microsoft SQL Server Linux image that can be found on [Docker Hub](http://hub.docker.com/r/microsoft/mssql-server). The Dockerfile will pull the image with the '2017-CU20-ubuntu-16.04' tag. This image requires two environment variables to be passed to it at run time - `ACCEPT_EULA` and `SA_PASSWORD`. The Microsoft SQL Server Linux image is in turn based on the official Ubuntu Linux image `Ubuntu:16.04`.
76
+
The Dockerfile defines the base image (the first layer) using the official Microsoft SQL Server Linux image that can be found on [Docker Hub](http://hub.docker.com/r/microsoft/mssql-server). The Dockerfile will pull the image with the '2019-CTP2.1-ubuntu' tag. This image requires two environment variables to be passed to it at run time - `ACCEPT_EULA` and `SA_PASSWORD`. The Microsoft SQL Server Linux image is in turn based on the official Ubuntu Linux image `Ubuntu:16.04`.
77
77
78
78
In addition, we will need to pass the following env variables `$MSSQL_DB``$MSSQL_USER``$MSSQL_PASSWORD`.
79
79
They will be used to configure the server with a new database and a user with admin permissions.
80
80
81
81
```
82
-
FROM mcr.microsoft.com/mssql/server:2017-CU20-ubuntu-16.04
82
+
FROM mcr.microsoft.com/mssql/server:2019-CTP2.1-ubuntu
83
83
```
84
84
85
85
This RUN command creates a new directory _inside_ the container at /usr/config and then sets the working directory to that directory.
0 commit comments