mirror of
https://github.com/containers/podman.git
synced 2025-08-24 18:12:25 +08:00

This adds `podman quadlet list`, `podman quadlet install`, `podman quadlet rm` and `podman quadlet print`. Signed-off-by: Matt Heon <mheon@redhat.com> Co-authored-by: flouthoc <flouthoc.git@gmail.com> Signed-off-by: flouthoc <flouthoc.git@gmail.com>
25 lines
538 B
Markdown
25 lines
538 B
Markdown
% podman-quadlet-print 1
|
|
|
|
## NAME
|
|
podman\-quadlet\-print - Display the contents of a quadlet
|
|
|
|
## SYNOPSIS
|
|
**podman quadlet print** *quadlet*
|
|
|
|
## DESCRIPTION
|
|
|
|
Print the contents of a Quadlet, displaying the file including all comments.
|
|
|
|
## EXAMPLES
|
|
|
|
```
|
|
$ podman quadlet print myquadlet.container
|
|
[Container]
|
|
Image=alpine
|
|
Exec=sh -c "echo LIFECYCLE TEST STARTED; trap 'exit' SIGTERM; while :; do echo running; sleep 1; done"
|
|
LogDriver=passthrough
|
|
```
|
|
|
|
## SEE ALSO
|
|
**[podman(1)](podman.1.md)**, **[podman-quadlet(1)](podman-quadlet.1.md)**
|