# ContainerTargetPlatform

- Module: [Aspire.Hosting](/reference/api/typescript/aspire.hosting.md)
- Version: `13.5.0`
- Kind: `enum`
- Source: [GitHub](https://github.com/microsoft/aspire/tree/e076d8e427cb3afb528dbd605acd74c3aea69f94)

Specifies the target platform for container images.

## Definition

```typescript
enum ContainerTargetPlatform {
  LinuxAmd64 = 0,
  LinuxArm64 = 1,
  AllLinux = 2,
  LinuxArm = 3,
  Linux386 = 4,
  WindowsAmd64 = 5,
  WindowsArm64 = 6,
}
```

## Values

- `LinuxAmd64` = `0`
- `LinuxArm64` = `1`
- `AllLinux` = `2`
- `LinuxArm` = `3`
- `Linux386` = `4`
- `WindowsAmd64` = `5`
- `WindowsArm64` = `6`
