# 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/a3766e994fd2cba86c8ac60b8a80268cab7e6383/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/a3766e994fd2cba86c8ac60b8a80268cab7e6383/src/Aspire.Hosting/ApplicationModel/ContainerImagePushOptions.cs)

Gets or sets the remote image tag.

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