Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add documentation for the --destination flag #3042

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ _If you are interested in contributing to kaniko, see
- [Flag `--compressed-caching`](#flag---compressed-caching)
- [Flag `--context-sub-path`](#flag---context-sub-path)
- [Flag `--custom-platform`](#flag---custom-platform)
- [Flag `--destination`](#flag---destination)
- [Flag `--digest-file`](#flag---digest-file)
- [Flag `--dockerfile`](#flag---dockerfile)
- [Flag `--force`](#flag---force)
Expand Down Expand Up @@ -876,6 +877,16 @@ _This is not virtualization and cannot help to build an architecture not
natively supported by the build host. This is used to build i386 on an amd64
Host for example, or arm32 on an arm64 host._

#### Flag `--destination`

Path where to push the built image. You can set it multiple
times for multiple registries, image names or tags.

Example value: `gcr.io/my-repo/my-image:my-tag`

When setting the destination to multiple image names, set the
[`--cache-repo` flag](#flag---cache-repo) explicitly.

#### Flag `--digest-file`

Set this flag to specify a file in the container. This file will receive the
Expand Down
Loading