From 7014eb3388f7aa191220a22638a10da66d3f1bfb Mon Sep 17 00:00:00 2001 From: KOBEISSI Morgan Date: Fri, 7 Sep 2018 17:20:35 +0200 Subject: [PATCH] Prepare for v1.0.0 release with dependency on 2017-CU10 --- Dockerfile | 2 +- README.md | 2 +- docker-compose.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b4d0434..929f757 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM microsoft/mssql-server-linux:latest +FROM microsoft/mssql-server-linux:2017-CU10 # Create a config directory RUN mkdir -p /usr/config diff --git a/README.md b/README.md index d713ed6..c81bcab 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ You can then simple call `docker-compose up` instead of the long `docker run...` ## Dockerfile The Dockerfile defines how the image will be built. Each of the commands in the Dockerfile is described below. -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-linux). The Dockerfile will pull the image with the 'latest' 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`. +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-linux). The Dockerfile will pull the image with the '2017-CU10' 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`. In addition, we will need to pass the following env variables `$MSSQL_DB` `$MSSQL_USER` `$MSSQL_PASSWORD`. They will be used to configure the server with a new database and a user with admin permissions. diff --git a/docker-compose.yml b/docker-compose.yml index 0b38699..6b8679d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ version: '3.2' services: db: build: . - image: mcmoe/mssqldocker + image: mcmoe/mssqldocker:v1.0.0 environment: ACCEPT_EULA: Y SA_PASSWORD: 2astazeY