Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Changed to new GA SQL Server container Image tag and parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
CESARDELATORRE committed Oct 4, 2017
1 parent 84bb9b5 commit e8c8678
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</EntryPoint>
<!-- Pass environment variables to your container: -->
<EnvironmentVariables>
<EnvironmentVariable Name="SA_PASSWORD" Value="Pass@word"/>
<EnvironmentVariable Name="MSSQL_SA_PASSWORD" Value="Pass@word"/>
<EnvironmentVariable Name="ACCEPT_EULA" Value="Y"/>
</EnvironmentVariables>
</CodePackage>
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-external.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '2'
services:
sql.data:
environment:
- SA_PASSWORD=Pass@word
- MSSQL_SA_PASSWORD=Pass@word
- ACCEPT_EULA=Y
ports:
- "5433:1433"
2 changes: 1 addition & 1 deletion docker-compose-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2.1'

services:
sql.data:
image: microsoft/mssql-server-linux
image: microsoft/mssql-server-linux:2017-latest

basket.data:
image: redis
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-windows.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ services:

sql.data:
environment:
- SA_PASSWORD=Pass@word
- MSSQL_SA_PASSWORD=Pass@word
- ACCEPT_EULA=Y
ports:
- "5433:1433"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.nobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ services:
- rabbitmq

sql.data:
image: microsoft/mssql-server-linux
image: microsoft/mssql-server-linux:2017-latest

nosql.data:
image: mongo
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ services:

sql.data:
environment:
- SA_PASSWORD=Pass@word
- MSSQL_SA_PASSWORD=Pass@word
- ACCEPT_EULA=Y
- MSSQL_PID=Developer
ports:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ services:

sql.data:
environment:
- SA_PASSWORD=Pass@word
- MSSQL_SA_PASSWORD=Pass@word
- ACCEPT_EULA=Y
- MSSQL_PID=Developer
ports:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ services:
- rabbitmq

sql.data:
image: microsoft/mssql-server-linux:latest
image: microsoft/mssql-server-linux:2017-latest

nosql.data:
image: mongo
Expand Down
4 changes: 2 additions & 2 deletions k8s/sql-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ spec:
spec:
containers:
- name: sql-data
image: microsoft/mssql-server-linux:latest
image: microsoft/mssql-server-linux:2017-latest
env:
- name: ACCEPT_EULA
value: "Y"
- name: MSSQL_PID
value: Developer
- name: SA_PASSWORD
- name: MSSQL_SA_PASSWORD
value: Pass@word
2 changes: 1 addition & 1 deletion src/Web/WebMonolithic/docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:

sql.data:
environment:
- SA_PASSWORD=Pass@word
- MSSQL_SA_PASSWORD=Pass@word
- ACCEPT_EULA=Y
ports:
- "5433:1433"
2 changes: 1 addition & 1 deletion src/Web/WebMonolithic/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ services:
depends_on:
- sql.data
sql.data:
image: microsoft/mssql-server-linux
image: microsoft/mssql-server-linux:2017-latest

0 comments on commit e8c8678

Please sign in to comment.