-
Couldn't load subscription status.
- Fork 713
Model Docker Compose as compute environment #8828
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
9e612ec to
79498f3
Compare
| /// </code> | ||
| /// </example> | ||
| public static IResourceBuilder<T> PublishAsDockerComposeService<T>(this IResourceBuilder<T> builder, Action<DockerComposeServiceResource, Service> configure) | ||
| where T : IResource |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should use IComputeResource from #8820.
| /// Initializes a new instance of the <see cref="DockerComposeEnvironmentResource"/> class. | ||
| /// </remarks> | ||
| /// <param name="name">The name of the Docker Compose environment.</param> | ||
| public class DockerComposeEnvironmentResource(string name) : Resource(name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| public class DockerComposeEnvironmentResource(string name) : Resource(name) | |
| public class DockerComposeEnvironmentResource(string name) : Resource(name), IComputeEnvironmentResource |
When #8820 is merged.
Contributes towards #8786.