# ContainerTargetPlatform

- Kind: `enum`
- Package: [Aspire.Hosting](/reference/api/csharp/aspire.hosting.md)
- Version: `13.3.0`
- Namespace: `Aspire.Hosting.Publishing`
- Target framework: `net8.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/bd20f904cde09ecb9c9ae5116a6f13614bf2d7c2/src/Aspire.Hosting/Publishing/ContainerTargetPlatform.cs)

Specifies the target platform for container images.

## Definition

```csharp
namespace Aspire.Hosting.Publishing;

public enum ContainerTargetPlatform
```

## Enum Members

Values can be combined with bitwise OR.
| Name | Value | Description |
| --- | --- | --- |
| LinuxAmd64 | 1 | Linux AMD64 (linux/amd64). |
| LinuxArm64 | 2 | Linux ARM64 (linux/arm64). |
| LinuxArm | 4 | Linux ARM (linux/arm). |
| Linux386 | 8 | Linux 386 (linux/386). |
| WindowsAmd64 | 16 | Windows AMD64 (windows/amd64). |
| WindowsArm64 | 32 | Windows ARM64 (windows/arm64). |
| AllLinux | 3 | All Linux platforms (AMD64 and ARM64). |
