> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mountthor.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Images

> Choose a macOS image for compute

The image catalog contains Mount Thor bases and images owned by your account.
Use an exact catalog name when creating a VM or bare-metal machine.

## Find an image

```bash theme={null}
mthr image ls
mthr image get macos-26
```

Use the returned name with [bare metal](/compute/bare-metal) or a
[virtual machine](/compute/virtual-machines).

## Create a customer image

Pull a Mount Thor base into a private workspace:

```bash theme={null}
mthr image pull macos-26 --output ./customer-base
```

Customize the workspace, then import it:

```bash theme={null}
mthr image import customer-base ./customer-base --wait
mthr image get customer-base
```

Mount Thor validates the import before making it available. External
registries and registry credentials are not part of this workflow.

## Delete a customer image

```bash theme={null}
mthr image delete customer-base
```
