2024-10-16 00:46:18 -05:00
|
|
|
# az image
|
|
|
|
|
|
|
|
> Manage custom Virtual Machine Images in Azure.
|
|
|
|
> Part of `azure-cli` (also known as `az`).
|
|
|
|
> More information: <https://learn.microsoft.com/cli/azure/image>.
|
|
|
|
|
|
|
|
- List the custom images under a resource group:
|
|
|
|
|
2025-05-11 20:07:11 +03:00
|
|
|
`az image list {{[-g|--resource-group]}} {{resource_group}}`
|
2024-10-16 00:46:18 -05:00
|
|
|
|
|
|
|
- Create a custom image from managed disks or snapshots:
|
|
|
|
|
2025-05-11 20:07:11 +03:00
|
|
|
`az image create {{[-g|--resource-group]}} {{resource_group}} {{[-n|--name]}} {{name}} --os-type {{windows|linux}} --source {{os_disk_source}}`
|
2024-10-16 00:46:18 -05:00
|
|
|
|
|
|
|
- Delete a custom image:
|
|
|
|
|
2025-05-11 20:07:11 +03:00
|
|
|
`az image delete {{[-n|--name]}} {{name}} {{[-g|--resource-group]}} {{resource_group}}`
|
2024-10-16 00:46:18 -05:00
|
|
|
|
|
|
|
- Show details of a custom image:
|
|
|
|
|
2025-05-11 20:07:11 +03:00
|
|
|
`az image show {{[-n|--name]}} {{name}} {{[-g|--resource-group]}} {{resource_group}}`
|
2024-10-16 00:46:18 -05:00
|
|
|
|
|
|
|
- Update custom images:
|
|
|
|
|
2025-05-11 20:07:11 +03:00
|
|
|
`az image update {{[-n|--name]}} {{name}} {{[-g|--resource-group]}} {{resource_group}} --set {{property=value}}`
|