# depot CLI v2.84.0 (https://depot.dev/changelog/2025-03-10-depot-cli-2-84-0)

> Published 2025-03-12

With the `v2.84.0` release of the [`depot` CLI](/docs/cli/installation), we now support saving custom tags for your builds! This will save any tags that are specified with the `--save-tag` flag to the [Depot Registry](/docs/registry/overview). You can use these custom tags in place of a build ID when trying to pull down a specific build.

```shell
$ depot build . --save-tag=latest --save-tag=v0.1.0 --save
...

Saved target:
        To pull: depot pull --project fhghgfvwcd hb0lbw8t1z
        To pull save-tags:
                docker login registry.depot.dev -u x-token -p $(depot pull-token)

                docker pull registry.depot.dev/fhghgfvwcd:latest
                docker pull registry.depot.dev/fhghgfvwcd:v0.1.0

        To push: depot push --project fhghgfvwcd --tag <REPOSITORY:TAG> qb0bzmrt1w
```

```shell
$ depot bake --save-tag=latest --save-tag=v0.1.0 --save
...

Saved targets: app,db
        To pull: depot pull --project fhghgfvwcd 8wdq1whv9j
        To pull save-tags:
                docker login registry.depot.dev -u x-token -p $(depot pull-token)

                docker pull registry.depot.dev/fhghgfvwcd:latest-app
                docker pull registry.depot.dev/fhghgfvwcd:v0.1.0-app
                docker pull registry.depot.dev/fhghgfvwcd:latest-db
                docker pull registry.depot.dev/fhghgfvwcd:v0.1.0-db

        To push: depot push --target <TARGET> --project fhghgfvwcd --tag <REPOSITORY:TAG> 1wd5pvxv9j
```

```hcl
group "default" {
  targets = ["app", "db"]
}

target "app" {
  dockerfile = "Dockerfile"
  platforms = ["linux/amd64", "linux/arm64"]
}

target "db" {
  dockerfile = "Dockerfile"
  platforms = ["linux/amd64", "linux/arm64"]
}
```

## For AI Agents

The full site index is at [llms.txt](https://depot.dev/llms.txt). Append `.md` to any documentation, blog, changelog, or customer URL to fetch its markdown source directly.