Skip to content

Commit ee13198

Browse files
Revert "Removes Docker profile from launchSettings.json"
1 parent 977d68b commit ee13198

5 files changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
22
"profiles": {
3+
"Docker": {
4+
"executablePath": "%WINDIR%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
5+
"commandLineArgs": "-ExecutionPolicy RemoteSigned .\\DockerTask.ps1 -Run -Environment $(Configuration) -Machine '$(DockerMachineName)'"
6+
}
37
}
48
}

src/Services/Basket/Basket.API/Properties/launchSettings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
"environmentVariables": {
2424
"ASPNETCORE_ENVIRONMENT": "Development"
2525
}
26+
},
27+
"Docker": {
28+
"launchBrowser": true,
29+
"launchUrl": "http://localhost:{ServicePort}/api/values"
2630
}
2731
}
2832
}

src/Services/Catalog/Catalog.API/Properties/launchSettings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
"environmentVariables": {
2323
"ASPNETCORE_ENVIRONMENT": "Development"
2424
}
25+
},
26+
"Docker": {
27+
"launchBrowser": true,
28+
"launchUrl": "http://localhost:{ServicePort}/api/values"
2529
}
2630
}
2731
}

src/Services/Ordering/Ordering.API/Properties/launchSettings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
"environmentVariables": {
2424
"ASPNETCORE_ENVIRONMENT": "Development"
2525
}
26+
},
27+
"Docker": {
28+
"executablePath": "%WINDIR%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
29+
"commandLineArgs": "-ExecutionPolicy RemoteSigned .\\DockerTask.ps1 -Run -Environment $(Configuration) -Machine '$(DockerMachineName)'",
30+
"launchBrowser": true,
31+
"launchUrl": "http://localhost:{ServicePort}/api/environmentInfo/machinename"
2632
}
2733
}
2834
}

src/Web/WebMVC/Properties/launchSettings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
"environmentVariables": {
2222
"ASPNETCORE_ENVIRONMENT": "Development"
2323
}
24+
},
25+
"Docker": {
26+
"launchBrowser": true,
27+
"launchUrl": "http://localhost:{ServicePort}"
2428
}
2529
}
2630
}

0 commit comments

Comments
 (0)