ContainerImagePushOptions
Class sealed net10.0
Represents options for pushing container images to a registry.
namespace Aspire.Hosting.ApplicationModel;
public sealed class ContainerImagePushOptions{ // ...}Remarks
Section titled Remarks This class allows customization of how container images are named and tagged when pushed to a container registry. The
ContainerImagePushOptions.RemoteImageName specifies the repository path (without registry endpoint or tag), and ContainerImagePushOptions.RemoteImageTag specifies the tag to apply. Use ContainerImagePushOptions.GetFullRemoteImageNameAsync to construct the complete image reference including registry endpoint and tag. Constructors1
Section titled ConstructorsProperties2
Section titled PropertiesRemoteImageNameget; setstring? Gets or sets the remote image name (repository path without registry endpoint or tag).
RemoteImageTagget; setstring? Gets or sets the remote image tag.