This website works better with JavaScript.
Home
Explore
Help
Sign In
ayan.poddar
/
eShopOnContainers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
19
Wiki
Activity
Browse Source
Setting to use SQL Server Developer Edition so there's no issue about any time bomb because of licensing or trial period.
pull/318/head
Cesar De la Torre
7 years ago
parent
df21bc84cb
commit
903b26d529
4 changed files
with
6 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
docker-compose.override.yml
+1
-0
docker-compose.prod.yml
+1
-1
docker-compose.yml
+3
-1
k8s/sql-data.yaml
+ 1
- 0
docker-compose.override.yml
View File
@ -170,6 +170,7 @@ services:
environment:
-
SA_PASSWORD=Pass@word
-
ACCEPT_EULA=Y
-
MSSQL_PID=Developer
ports:
-
"5433:1433"
+ 1
- 0
docker-compose.prod.yml
View File
@ -124,6 +124,7 @@ services:
environment:
-
SA_PASSWORD=Pass@word
-
ACCEPT_EULA=Y
-
MSSQL_PID=Developer
ports:
-
"5433:1433"
+ 1
- 1
docker-compose.yml
View File
@ -97,7 +97,7 @@ services:
-
rabbitmq
sql.data:
image
:
microsoft/mssql-server-linux
image
:
microsoft/mssql-server-linux
:latest
nosql.data:
image
:
mongo
+ 3
- 1
k8s/sql-data.yaml
View File
@ -25,9 +25,11 @@ spec:
spec:
containers:
-
name
:
sql-data
image
:
microsoft/mssql-server-linux:
rc2
image
:
microsoft/mssql-server-linux:
latest
env:
-
name
:
ACCEPT_EULA
value
:
"Y"
-
name
:
MSSQL_PID
value
:
Developer
-
name
:
SA_PASSWORD
value
:
Pass@word
Write
Preview
Loading…
Cancel
Save