mirror of
https://github.com/containers/podman.git
synced 2025-08-06 11:32:07 +08:00
Merge pull request #4475 from rhatdan/tmpdir
Add missing information to podman.1 man page
This commit is contained in:
@ -69,7 +69,7 @@ func init() {
|
||||
rootCmd.PersistentFlags().StringArrayVar(&MainGlobalOpts.StorageOpts, "storage-opt", []string{}, "Used to pass an option to the storage driver")
|
||||
rootCmd.PersistentFlags().BoolVar(&MainGlobalOpts.Syslog, "syslog", false, "Output logging information to syslog as well as the console")
|
||||
|
||||
rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.TmpDir, "tmpdir", "", "Path to the tmp directory")
|
||||
rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.TmpDir, "tmpdir", "", "Path to the tmp directory for libpod state content.\n\nNote: use the environment variable 'TMPDIR' to change the temporary storage location for container images, '/var/tmp'.\n")
|
||||
rootCmd.PersistentFlags().BoolVar(&MainGlobalOpts.Trace, "trace", false, "Enable opentracing output")
|
||||
}
|
||||
|
||||
|
@ -21,10 +21,6 @@ created by the other.
|
||||
|
||||
## GLOBAL OPTIONS
|
||||
|
||||
**--help**, **-h**
|
||||
|
||||
Print usage statement
|
||||
|
||||
**--cgroup-manager**=*manager*
|
||||
|
||||
CGroup manager to use for container cgroups. Supported values are cgroupfs or systemd. Default is systemd unless overridden in the libpod.conf file.
|
||||
@ -32,6 +28,17 @@ CGroup manager to use for container cgroups. Supported values are cgroupfs or sy
|
||||
Note: Setting this flag can cause certain commands to break when called on containers previously created by the other CGroup manager type.
|
||||
Note: CGroup manager is not supported in rootless mode when using CGroups Version V1.
|
||||
|
||||
**--cni-config-dir**
|
||||
Path of the configuration directory for CNI networks. (Default: `/etc/cni/net.d`)
|
||||
|
||||
**--config**
|
||||
Path of a libpod config file detailing container server configuration options
|
||||
|
||||
Default libpod config file is /usr/share/containers/libpod.conf. Override file is in /etc/containers/libpod.conf. In rootless mode the config file will be read from $HOME/.config/containers/libpod.conf.
|
||||
|
||||
**--conmon**
|
||||
Path of the conmon binary (Default path is configured in `libpod.conf`)
|
||||
|
||||
**--cpu-profile**=*path*
|
||||
|
||||
Path to where the cpu performance results should be written
|
||||
@ -40,6 +47,10 @@ Path to where the cpu performance results should be written
|
||||
|
||||
Backend to use for storing events. Allowed values are **file**, **journald**, and **none**.
|
||||
|
||||
**--help**, **-h**
|
||||
|
||||
Print usage statement
|
||||
|
||||
**--hooks-dir**=*path*
|
||||
|
||||
Each `*.json` file in the path configures a hook for Podman containers. For more details on the syntax of the JSON files and the semantics of hook injection, see `oci-hooks(5)`. Podman and libpod currently support both the 1.0.0 and 0.1.0 hook schemas, although the 0.1.0 schema is deprecated.
|
||||
@ -58,30 +69,30 @@ Podman and libpod currently support an additional `precreate` state which is cal
|
||||
|
||||
**--log-level**=*level*
|
||||
|
||||
Log messages above specified level: debug, info, warn, error (default), fatal or panic
|
||||
Log messages above specified level: debug, info, warn, error (default), fatal or panic (default: "error")
|
||||
|
||||
**--namespace**=*namespace*
|
||||
|
||||
Set libpod namespace. Namespaces are used to separate groups of containers and pods in libpod's state.
|
||||
When namespace is set, created containers and pods will join the given namespace, and only containers and pods in the given namespace will be visible to Podman.
|
||||
|
||||
**--network-cmd-path**=*path*
|
||||
Path to the command binary to use for setting up a network. It is currently only used for setting up a slirp4netns network. If "" is used then the binary is looked up using the $PATH environment variable.
|
||||
|
||||
**--root=***value*
|
||||
|
||||
Storage root dir in which data, including images, is stored (default: "/var/lib/containers/storage" for UID 0, "$HOME/.local/share/containers/storage" for other users).
|
||||
Default root dir is configured in /etc/containers/storage.conf.
|
||||
Default root dir is configured in `/etc/containers/storage.conf`.
|
||||
|
||||
**--runroot**=*value*
|
||||
|
||||
Storage state directory where all state information is stored (default: "/var/run/containers/storage" for UID 0, "/var/run/user/$UID/run" for other users).
|
||||
Default state dir is configured in /etc/containers/storage.conf.
|
||||
Default state dir is configured in `/etc/containers/storage.conf`.
|
||||
|
||||
**--runtime**=*value*
|
||||
|
||||
Name of the OCI runtime as specified in libpod.conf or absolute path to the OCI compatible binary used to run containers.
|
||||
|
||||
**--network-cmd-path**=*path*
|
||||
Path to the command binary to use for setting up a network. It is currently only used for setting up a slirp4netns network. If "" is used then the binary is looked up using the $PATH environment variable.
|
||||
|
||||
**--storage-driver**=*value*
|
||||
|
||||
Storage driver. The default storage driver for UID 0 is configured in /etc/containers/storage.conf (`$HOME/.config/containers/storage.conf` in rootless mode), and is *vfs* for non-root users when *fuse-overlayfs* is not available. The `STORAGE_DRIVER` environment variable overrides the default. The --storage-driver specified driver overrides all.
|
||||
@ -95,10 +106,16 @@ Storage driver option, Default storage driver options are configured in /etc/con
|
||||
|
||||
**--syslog**
|
||||
|
||||
output logging information to syslog as well as the console
|
||||
Output logging information to syslog as well as the console.
|
||||
|
||||
On remote clients, logging is directed to the file ~/.config/containers/podman.log
|
||||
|
||||
**--tmpdir**
|
||||
|
||||
Path to the tmp directory, for libpod runtime content.
|
||||
|
||||
NOTE --tmpdir is not used for the temporary storage of downloaded images. Use the environment variable `TMPDIR` to change the temporary storage location of downloaded container images. Podman defaults to use `/var/tmp`.
|
||||
|
||||
**--version**, **-v**
|
||||
|
||||
Print the version
|
||||
|
Reference in New Issue
Block a user