docker files fixes from liaqat

This commit is contained in:
alirehmani
2024-05-03 16:39:25 +05:00
commit 464a8730e8
587 changed files with 44288 additions and 0 deletions

28
src/launchSettings.json Normal file
View File

@@ -0,0 +1,28 @@
{
"profiles": {
"Docker - Api": {
"commandName": "DockerCompose",
"commandVersion": "1.0",
"serviceActions": {
"managing.api": "StartDebugging",
"managing.api.workers": "DoNotStart"
}
},
"Docker - Workers": {
"commandName": "DockerCompose",
"commandVersion": "1.0",
"serviceActions": {
"managing.api": "DoNotStart",
"managing.api.workers": "StartDebugging"
}
},
"Docker - Debug all": {
"commandName": "DockerCompose",
"commandVersion": "1.0",
"serviceActions": {
"managing.api": "StartDebugging",
"managing.api.workers": "StartDebugging"
}
}
}
}