-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Add podman manifest rm --ignore #24678
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. thank you! |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
% podman-manifest-rm 1 | ||
|
||
## NAME | ||
podman\-manifest\-rm - Remove manifest list or image index from local storage | ||
|
||
## SYNOPSIS | ||
**podman manifest rm** *list-or-index* [...] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also must add There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice. the .in file should not have been checked in. |
||
|
||
## DESCRIPTION | ||
Removes one or more locally stored manifest lists. | ||
|
||
## OPTIONS | ||
|
||
#### **--ignore**, **-i** | ||
|
||
If a specified manifest does not exist in the local storage, ignore it and do not throw an error. | ||
|
||
## EXAMPLE | ||
|
||
podman manifest rm `<list>` | ||
|
||
podman manifest rm listid1 listid2 | ||
|
||
**storage.conf** (`/etc/containers/storage.conf`) | ||
|
||
storage.conf is the storage configuration file for all tools using containers/storage | ||
|
||
The storage configuration file specifies all of the available container storage options for tools using shared container storage. | ||
|
||
## SEE ALSO | ||
**[podman(1)](podman.1.md)**, **[podman-manifest(1)](podman-manifest.1.md)**, **[containers-storage.conf(5)](https://github.com/containers/storage/blob/main/docs/containers-storage.conf.5.md)** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we be committing this if there is a corresponding
.in
file?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes if we use .in the normal file should not be committed and added to the gitignore
Technically speaking there is no reason to use the .in file as it doesn't make use of the imports