Purge a project's Docker layer cache (DLC)

## Usage

`circleci dlc <command> [flags]`

## Available Commands

| Command | Description                                |
| ------- | ------------------------------------------ |
| `purge` | Purge the Docker Layer Cache for a project |

## Flags

Global flags: `-c, --config`, `--debug`, `--no-color`, `-q, --quiet` — see `circleci --help`.

## Examples

- Purge DLC for the current git repository's project: 
  `circleci dlc purge`
- Purge DLC for a specific project: 
  `circleci dlc purge --project gh/myorg/myrepo`
- Purge DLC and output result as JSON: 
  `circleci dlc purge --project gh/myorg/myrepo --json`

## Details

Manage docker layer caching (DLC) for projects.

Docker layer caching allows CircleCI to cache individual Docker image
layers between pipeline runs. Use 'circleci dlc purge' to invalidate
the cache for a project and force a fresh image build on the next run.

These commands are also available under 'circleci project dlc'.

