62 lines
2.0 KiB
Groff
62 lines
2.0 KiB
Groff
.nh
|
|
.TH podman-quadlet-install 1
|
|
.SH NAME
|
|
podman-quadlet-install \- Install a quadlet file or quadlet application
|
|
|
|
.SH SYNOPSIS
|
|
\fBpodman quadlet install\fP [\fIoptions\fP] \fIquadlet-path-or-url\fP [\fIfiles-path-or-url\fP]...
|
|
|
|
.SH DESCRIPTION
|
|
Install a Quadlet file or an application (which may include multiple Quadlet files) for the current user. You can specify Quadlet files as local files or web URLs.
|
|
|
|
.PP
|
|
This command allows you to:
|
|
|
|
.EX
|
|
* Install a single Quadlet file, optionally followed by additional non-Quadlet files.
|
|
|
|
* Specify a directory containing multiple Quadlet files and other non-Quadlet files for installation ( example a config file for a quadlet container ).
|
|
.EE
|
|
|
|
.PP
|
|
Note: If a quadlet is part of an application, removing that specific quadlet will remove the entire application. When a quadlet is installed from a directory, all files installed from that directory—including both quadlet and non-quadlet files—are considered part of a single application.
|
|
|
|
.PP
|
|
Note: In case user wants to install Quadlet application then first path should be the path to application directory.
|
|
|
|
.SH OPTIONS
|
|
.SS \fB--reload-systemd\fP
|
|
Reload systemd after installing Quadlets (default true).
|
|
In order to disable it users need to manually set the value
|
|
of this flag to \fBfalse\fR\&.
|
|
|
|
.SH EXAMPLES
|
|
Install quadlet from a file.
|
|
|
|
.EX
|
|
$ podman quadlet install test-service-quadlet.container
|
|
/home/user/.config/containers/systemd/test-service-quadlet.container
|
|
.EE
|
|
|
|
.PP
|
|
Install quadlet from a dir.
|
|
|
|
.EX
|
|
$ podman quadlet install /home/user/work/quadlet-app/
|
|
/home/user/.config/containers/systemd/myquadlet1.container
|
|
/home/user/.config/containers/systemd/myquadlet2.container
|
|
/install/path/myquadlet1.container
|
|
/install/path/myquadlet2.container
|
|
.EE
|
|
|
|
.PP
|
|
Install quadlet from a url
|
|
|
|
.EX
|
|
$ podman quadlet install https://github.com/containers/podman/blob/main/test/e2e/quadlet/basic.container
|
|
/home/user/.config/containers/systemd/basic.container
|
|
.EE
|
|
|
|
.SH SEE ALSO
|
|
\fBpodman(1)\fP, \fBpodman-quadlet(1)\fP
|