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
commit
903b26d529
4 changed files with 6 additions and 2 deletions
  1. +1
    -0
      docker-compose.override.yml
  2. +1
    -0
      docker-compose.prod.yml
  3. +1
    -1
      docker-compose.yml
  4. +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

Loading…
Cancel
Save