Last active
January 23, 2020 13:40
Revisions
-
kgeorge314 revised this gist
Jan 23, 2020 . 3 changed files with 21 additions and 0 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ git clone https://github.com/kgeorge314/code-examples.git cd ./code-examples/sql-server-docker-compose # docker-up docker-compose -f "docker-compose.yml" up -d --build # docker-down docker-compose -f "docker-compose.yml" down # The Docker-Compose file after variable replacements docker-compose config This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ SQL_SERVER_PASSWORD=$3cureP@ssw0rd This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ version: '3' services: db: image: microsoft/mssql-server-linux environment: SA_PASSWORD: ${SQL_SERVER_PASSWORD} ACCEPT_EULA: Y ports: - '14333:1433' -
kgeorge314 revised this gist
Jan 23, 2020 . 2 changed files with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes.File renamed without changes. -
kgeorge314 renamed this gist
Jan 23, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
kgeorge314 revised this gist
Jan 23, 2020 . 1 changed file with 16 additions and 0 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ version: '3' services: db-first-server: image: microsoft/mssql-server-linux environment: SA_PASSWORD: $$3cureP@ssw0rd ACCEPT_EULA: Y ports: - '14333:1433' db-second-server: image: microsoft/mssql-server-linux environment: SA_PASSWORD: $$3cureP@ssw0rd ACCEPT_EULA: Y ports: - '15333:1433' -
kgeorge314 created this gist
Jan 23, 2020 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ version: '3' services: db: image: microsoft/mssql-server-linux environment: SA_PASSWORD: $$3cureP@ssw0rd ACCEPT_EULA: Y ports: - '14333:1433'