diff options
author | Nathan Williams <nath.e.will@gmail.com> | 2018-04-18 20:19:53 -0700 |
---|---|---|
committer | Nathan Williams <nath.e.will@gmail.com> | 2018-04-21 22:37:21 -0700 |
commit | 79f08c4699e42ee50fd74c304b0d38ef8380dfed (patch) | |
tree | 87425ad1379e26a47d994569413bc61848cc1d6c /docs | |
parent | cc7d1de1c11e1846552c0f81811a1fbab3711151 (diff) | |
download | podman-79f08c4699e42ee50fd74c304b0d38ef8380dfed.tar.gz podman-79f08c4699e42ee50fd74c304b0d38ef8380dfed.tar.bz2 podman-79f08c4699e42ee50fd74c304b0d38ef8380dfed.zip |
add libpod.conf man page
Signed-off-by: Nathan Williams <nath.e.will@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/libpod.conf.5.md | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/docs/libpod.conf.5.md b/docs/libpod.conf.5.md new file mode 100644 index 000000000..226371b6d --- /dev/null +++ b/docs/libpod.conf.5.md @@ -0,0 +1,54 @@ +% libpod.conf(5) library for running OCI-based containers in Pods +% Nathan Williams +% APRIL 2018 + +# NAME +libpod.conf - libpod configuration file + +# DESCRIPTION +The libpod.conf file is the default configuration file for all tools using +libpod to manage containers. + +# OPTIONS + +**image_default_transport**="" + Default transport method for pulling and pushing images + +**runtime_path**="" + Paths to search for a valid OCI runtime binary + +**conmon_path**="" + Paths to search for the Conmon container manager binary + +**conmon_env_vars**="" + Environment variables to pass into Conmon + +**cgroup_manager**="" + Specify the CGroup Manager to use; valid values are "systemd" and "cgroupfs" + +**static_dir**="" + Directory for persistent libpod files (database, etc) + By default this will be configured relative to where containers/storage + stores containers + +**tmp_dir**="" + Directory for temporary files + Must be a tmpfs (wiped after reboot) + +**max_log_size**="" + Maximum size of log files (in bytes) + +**no_pivot_root**="" + Whether to use chroot instead of pivot_root in the runtime + +**cni_config_dir**="" + Directory containing CNI plugin configuration files + +**cni_plugin_dir**="" + Directories where CNI plugin binaries may be located + +# FILES +/etc/containers/libpod.conf, default libpod configuration path + +# HISTORY +Apr 2018, Originally compiled by Nathan Williams <nath.e.will@gmail.com> |