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

# devbox image describe

> Display details about a Devbox base image.

Display the complete details of a Devbox base image as JSON. Without `--name`, the CLI opens an interactive image picker.

## Usage

```bash theme={null}
devbox image describe [flags]
```

## Examples

### Describe an image by repository name

```bash theme={null}
devbox image describe --name my-team/golang
```

### Select from all image versions

```bash theme={null}
devbox image describe --all_images
```

## Options

<ResponseField name="--all_images" type="boolean" default="false">
  Include every image version in the interactive picker instead of only the latest version in each repository.
</ResponseField>

<ResponseField name="--name" type="string">
  Describe an image repository directly and skip interactive selection. If multiple versions exist, the newest matching image is selected.
</ResponseField>

## Related topics

<Columns cols={2}>
  <Card title="devbox image list" icon="list" href="/docs/reference/devbox-cli/image-list">
    Find available image names.
  </Card>

  <Card title="Custom images" icon="hard-drive" href="/docs/devbox/images">
    Build and manage Devbox images.
  </Card>
</Columns>
