Skip to content

Commit

Permalink
provenance note
Browse files Browse the repository at this point in the history
  • Loading branch information
kylegalbraith committed Aug 9, 2023
1 parent e469832 commit 029fb58
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions content/overview/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,13 @@ Yes! Check out our [integration guide](guides/arm-containers#what-about-multi-ar
### Can I use Depot with my existing `docker build` or `docker buildx build` commands?

Yes! We have a [`depot configure-docker`](/docs/cli/reference#depot-configure-docker) command that configures Depot as a plugin for the Docker CLI and sets Depot as the default builder for both `docker build` and `docker buildx build`. See our [`docker build` guide](/docs/guides/docker-build) for more details.

### What are these extra files in my registry?

Registries like Amazon Elastic Container Registry (ECR) and Google Container Registry (GCR) don't accurately display provenance information for a given image. Provenance is a set of metadata that describes how an image was built. This metadata is stored in the registry alongside the image. It's enabled by default in `docker build` and thus by default in `depot build` as well.

If you would like to clean up the clutter, you can run your build with `--provenance=false`:

```shell
depot build -t <your-registry> --push --provenance=false .
```

0 comments on commit 029fb58

Please sign in to comment.