-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunchSettings.json
33 lines (33 loc) · 1.01 KB
/
launchSettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"profiles": {
"docker-compose": {
"commandName": "DockerCompose",
"commandVersion": "1.0",
"composeLaunchAction": "LaunchBrowser",
"composeLaunchUrl": "{Scheme}://localhost:{ServicePort}",
"serviceActions": {
"ozymapi": "StartWithoutDebugging",
"ozymdb": "StartWithoutDebugging",
"ozymweb": "StartWithoutDebugging",
"ozymapi-dev": "DoNotStart",
"ozymdb-dev": "DoNotStart",
"ozymweb-dev": "DoNotStart"
}
},
"docker-compose-debug": {
"commandName": "DockerCompose",
"commandVersion": "1.0",
"composeLaunchAction": "LaunchBrowser",
"composeLaunchServiceName": "ozymweb-dev",
"composeLaunchUrl": "{Scheme}://localhost:{ServicePort}",
"serviceActions": {
"ozymapi": "DoNotStart",
"ozymdb": "DoNotStart",
"ozymweb": "DoNotStart",
"ozymapi-dev": "StartWithoutDebugging",
"ozymdb-dev": "StartWithoutDebugging",
"ozymweb-dev": "StartDebugging"
}
}
}
}