# ContainerImagePushOptions Properties

- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Type: [ContainerImagePushOptions](/reference/api/csharp/aspire.hosting/containerimagepushoptions.md)
- Kind: `Properties`
- Members: `2`

Represents options for pushing container images to a registry.

## RemoteImageName

- Name: `RemoteImageName`
- Modifiers: `nullable` `get; set`
- Returns: `string?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/ContainerImagePushOptions.cs)

Gets or sets the remote image name (repository path without registry endpoint or tag).

```csharp
public string? RemoteImageName { get; set; }
```

## RemoteImageTag

- Name: `RemoteImageTag`
- Modifiers: `nullable` `get; set`
- Returns: `string?`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/ApplicationModel/ContainerImagePushOptions.cs)

Gets or sets the remote image tag.

```csharp
public string? RemoteImageTag { get; set; }
```
