summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2019-11-07 16:54:51 -0500
committerDaniel J Walsh <dwalsh@redhat.com>2019-11-08 08:48:57 -0500
commit2087e92ff3dc9b5b2155822b955e52aa4e2802b1 (patch)
treed21dcdad0b74570c067eb168857d8fbdc98b9990 /cmd
parent3463a7194c504790e73a1750109c1813a7c3cfe9 (diff)
downloadpodman-2087e92ff3dc9b5b2155822b955e52aa4e2802b1.tar.gz
podman-2087e92ff3dc9b5b2155822b955e52aa4e2802b1.tar.bz2
podman-2087e92ff3dc9b5b2155822b955e52aa4e2802b1.zip
Add missing information to podman.1 man page
Add missing options. Define the use of the TMPDIR environment variable for the storing of container images when they are being pulled to the system. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/podman/main_local.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/main_local.go b/cmd/podman/main_local.go
index f630f1210..5499b13ef 100644
--- a/cmd/podman/main_local.go
+++ b/cmd/podman/main_local.go
@@ -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")
}