depot CLI v2.54.1
A new release of our depot CLI is now available with a few improvements and bug fixes. The biggest one is the ability to create Depot projects directly from the CLI:
depot projects create "your new project name"This creates a new project in your Depot organization with the default region of us-east-1 and the default cache storage policy of 50 GB per architecture. If you want to customize the region and cache storage policy, you can use the --region and --cache-storage-policy flags:
depot projects create \
  --region eu-central-1 \
  --cache-storage-policy 100 \
  "your new project name"In addition, we also shipped a few other improvements and bug fixes in v2.54.1:
- Better error reporting for merging manifests...steps
- Allow tag overrides to apply when building Compose files via depot bake