> ## 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.

# nsc registry list

List images or repositories in the registry.

`registry list` lists container images or repositories in your workspace's private [Namespace Container Registry](/docs/architecture/storage/container-registry).

## Usage

```bash theme={null}
nsc registry list [repository]
```

### Example

List all repositories:

```bash theme={null}
nsc registry list --repositories
```

```text nocopy Output theme={null}
Repository Name       Last Push
myapp                 2024-01-15T10:30:00Z
backend-service       2024-01-14T15:45:30Z
```

List images in a repository:

```bash theme={null}
nsc registry list myapp
```

```text nocopy Output theme={null}
Image Reference                          Size      Created
nscr.io/myapp:latest@sha256:abc123...    256 MiB   2024-01-15T10:30:00Z
nscr.io/myapp:v1.2.3@sha256:def456...    248 MiB   2024-01-14T15:45:30Z
```

## Options

<h3 id="--repositories">
  \--repositories
</h3>

List repositories instead of images.

<h3 id="--repository-name">
  \--repository \<name>
</h3>

Filter images by repository name.

<h3 id="--include_deleted">
  \--include\_deleted
</h3>

Include deleted images in results.

<h3 id="--limit-count">
  \--limit \<count>
</h3>

The maximum number of images or repositories to list.

<h3 id="--output--o-format">
  \--output, -o \<format>
</h3>

Output format. One of `table` or `json`. Default is `table`.
