1 instantiation of ComposeFile
Aspire.Hosting.Docker (1)
DockerComposePublishingContext.cs (1)
80var composeFile = new ComposeFile();
10 references to ComposeFile
Aspire.Hosting.Docker (10)
DockerComposePublishingContext.cs (2)
80var composeFile = new ComposeFile(); 150private static void HandleComposeFileVolumes(DockerComposeServiceResource serviceResource, ComposeFile composeFile)
Resources\ComposeFile.cs (8)
113/// <returns>The updated <see cref="ComposeFile"/> instance with the added network.</returns> 114public ComposeFile AddNetwork(Network network) 124/// <returns>The updated <see cref="ComposeFile"/> instance containing the added service.</returns> 125public ComposeFile AddService(Service service) 135/// <returns>The updated <see cref="ComposeFile"/> instance with the added volume.</returns> 136public ComposeFile AddVolume(Volume volume) 143/// Converts the current instance of <see cref="ComposeFile"/> to its YAML string representation. 146/// <returns>A string containing the YAML representation of the <see cref="ComposeFile"/> instance.</returns>