diff options
Diffstat (limited to 'libpod.conf')
-rw-r--r-- | libpod.conf | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libpod.conf b/libpod.conf index 6dd021c02..3bd3758b8 100644 --- a/libpod.conf +++ b/libpod.conf @@ -4,7 +4,9 @@ # Default transport method for pulling and pushing for images image_default_transport = "docker://" -# Paths to look for the Conmon container manager binary +# Paths to look for the conmon container manager binary. +# If the paths are empty or no valid path was found, then the `$PATH` +# environment variable will be used as the fallback. conmon_path = [ "/usr/libexec/podman/conmon", "/usr/local/libexec/podman/conmon", @@ -121,6 +123,8 @@ runtime = "runc" runtime_supports_json = ["runc"] # Paths to look for a valid OCI runtime (runc, runv, etc) +# If the paths are empty or no valid path was found, then the `$PATH` +# environment variable will be used as the fallback. [runtimes] runc = [ "/usr/bin/runc", |