-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.dcproj
More file actions
28 lines (27 loc) · 1.62 KB
/
Copy pathdocker-compose.dcproj
File metadata and controls
28 lines (27 loc) · 1.62 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" Sdk="Microsoft.Docker.Sdk" DefaultTargets="Build">
<PropertyGroup Label="Globals">
<ProjectVersion>2.1</ProjectVersion>
<DockerTargetOS>Linux</DockerTargetOS>
<ProjectGuid>{27230172-3FEF-45ED-ABFF-6C0E3F276D34}</ProjectGuid>
<!-- Name the compose stack so VS and the CLI group containers under the same
project name (matches `name:` in docker-compose.yaml).
Consequence: VS manages the same containers the CLI started, and this project
builds with the solution — so a solution build (which Test Explorer triggers)
can remove a stack you brought up from the terminal, and the E2E suite then
fails wholesale with ERR_CONNECTION_REFUSED on :8080. Recover with
`docker compose up -d`. See docs/E2E-Playwright.md, "Visual Studio". -->
<DockerComposeProjectName>check_performance_data</DockerComposeProjectName>
<DockerLaunchBrowser>True</DockerLaunchBrowser>
<DockerServiceUrl>{Scheme}://localhost:{ServicePort}</DockerServiceUrl>
<DockerServiceName>web</DockerServiceName>
<!-- The e2e-tests compose service builds the E2ETests project but only runs
under the 'e2e' compose profile (it's a one-shot test runner, not a
debuggable service). Ignore it so VS doesn't hunt for a container the
'all' profile never starts. -->
<DockerComposeProjectsToIgnore>tests\DfE.CheckPerformanceData.E2ETests\DfE.CheckPerformanceData.E2ETests.csproj</DockerComposeProjectsToIgnore>
</PropertyGroup>
<ItemGroup>
<None Include="docker-compose.yaml" />
</ItemGroup>
</Project>