Revert "Removes Docker profile from launchSettings.json"

This commit is contained in:
Cesar De la Torre 2017-03-09 11:59:29 -08:00 committed by GitHub
parent 977d68b0dc
commit ee13198242
5 changed files with 22 additions and 0 deletions

View File

@ -1,4 +1,8 @@
{ {
"profiles": { "profiles": {
"Docker": {
"executablePath": "%WINDIR%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"commandLineArgs": "-ExecutionPolicy RemoteSigned .\\DockerTask.ps1 -Run -Environment $(Configuration) -Machine '$(DockerMachineName)'"
}
} }
} }

View File

@ -23,6 +23,10 @@
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }
},
"Docker": {
"launchBrowser": true,
"launchUrl": "http://localhost:{ServicePort}/api/values"
} }
} }
} }

View File

@ -22,6 +22,10 @@
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }
},
"Docker": {
"launchBrowser": true,
"launchUrl": "http://localhost:{ServicePort}/api/values"
} }
} }
} }

View File

@ -23,6 +23,12 @@
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }
},
"Docker": {
"executablePath": "%WINDIR%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"commandLineArgs": "-ExecutionPolicy RemoteSigned .\\DockerTask.ps1 -Run -Environment $(Configuration) -Machine '$(DockerMachineName)'",
"launchBrowser": true,
"launchUrl": "http://localhost:{ServicePort}/api/environmentInfo/machinename"
} }
} }
} }

View File

@ -21,6 +21,10 @@
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }
},
"Docker": {
"launchBrowser": true,
"launchUrl": "http://localhost:{ServicePort}"
} }
} }
} }