Skip to content

Commit e8c8678

Browse files
Changed to new GA SQL Server container Image tag and parameters
1 parent 84bb9b5 commit e8c8678

11 files changed

Lines changed: 12 additions & 12 deletions

ServiceFabric/eShopOnServiceFabric/ApplicationPackageRoot/SqlServerPkg/ServiceManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</EntryPoint>
2121
<!-- Pass environment variables to your container: -->
2222
<EnvironmentVariables>
23-
<EnvironmentVariable Name="SA_PASSWORD" Value="Pass@word"/>
23+
<EnvironmentVariable Name="MSSQL_SA_PASSWORD" Value="Pass@word"/>
2424
<EnvironmentVariable Name="ACCEPT_EULA" Value="Y"/>
2525
</EnvironmentVariables>
2626
</CodePackage>

docker-compose-external.override.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '2'
33
services:
44
sql.data:
55
environment:
6-
- SA_PASSWORD=Pass@word
6+
- MSSQL_SA_PASSWORD=Pass@word
77
- ACCEPT_EULA=Y
88
ports:
99
- "5433:1433"

docker-compose-external.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '2.1'
22

33
services:
44
sql.data:
5-
image: microsoft/mssql-server-linux
5+
image: microsoft/mssql-server-linux:2017-latest
66

77
basket.data:
88
image: redis

docker-compose-windows.prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ services:
121121

122122
sql.data:
123123
environment:
124-
- SA_PASSWORD=Pass@word
124+
- MSSQL_SA_PASSWORD=Pass@word
125125
- ACCEPT_EULA=Y
126126
ports:
127127
- "5433:1433"

docker-compose.nobuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ services:
6666
- rabbitmq
6767

6868
sql.data:
69-
image: microsoft/mssql-server-linux
69+
image: microsoft/mssql-server-linux:2017-latest
7070

7171
nosql.data:
7272
image: mongo

docker-compose.override.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ services:
177177

178178
sql.data:
179179
environment:
180-
- SA_PASSWORD=Pass@word
180+
- MSSQL_SA_PASSWORD=Pass@word
181181
- ACCEPT_EULA=Y
182182
- MSSQL_PID=Developer
183183
ports:

docker-compose.prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ services:
124124

125125
sql.data:
126126
environment:
127-
- SA_PASSWORD=Pass@word
127+
- MSSQL_SA_PASSWORD=Pass@word
128128
- ACCEPT_EULA=Y
129129
- MSSQL_PID=Developer
130130
ports:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ services:
9797
- rabbitmq
9898

9999
sql.data:
100-
image: microsoft/mssql-server-linux:latest
100+
image: microsoft/mssql-server-linux:2017-latest
101101

102102
nosql.data:
103103
image: mongo

k8s/sql-data.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ spec:
2525
spec:
2626
containers:
2727
- name: sql-data
28-
image: microsoft/mssql-server-linux:latest
28+
image: microsoft/mssql-server-linux:2017-latest
2929
env:
3030
- name: ACCEPT_EULA
3131
value: "Y"
3232
- name: MSSQL_PID
3333
value: Developer
34-
- name: SA_PASSWORD
34+
- name: MSSQL_SA_PASSWORD
3535
value: Pass@word

src/Web/WebMonolithic/docker-compose.override.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111

1212
sql.data:
1313
environment:
14-
- SA_PASSWORD=Pass@word
14+
- MSSQL_SA_PASSWORD=Pass@word
1515
- ACCEPT_EULA=Y
1616
ports:
1717
- "5433:1433"

0 commit comments

Comments
 (0)