diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-07-20 14:17:37 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-07-20 15:09:54 -0400 |
commit | 841eac0af651d7afa4749a65f4e773815b5c715c (patch) | |
tree | c77b9d49238626f93839206c37da8bf7d8b9505b /cni/README.md | |
parent | 0d26a573e3cf8cc5baea84206a86cb83b433b6d5 (diff) | |
download | podman-841eac0af651d7afa4749a65f4e773815b5c715c.tar.gz podman-841eac0af651d7afa4749a65f4e773815b5c715c.tar.bz2 podman-841eac0af651d7afa4749a65f4e773815b5c715c.zip |
Switch references from libpod.conf to containers.conf
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cni/README.md')
-rw-r--r-- | cni/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cni/README.md b/cni/README.md index 2683df714..bc37df1eb 100644 --- a/cni/README.md +++ b/cni/README.md @@ -5,7 +5,7 @@ directory just contains an example configuration that can be used as the basis for your own configuration. To use this configuration, place it in `/etc/cni/net.d` (or the directory -specified by `cni_config_dir` in your `libpod.conf`). +specified by `cni_config_dir` in your `containers.conf`). For example a basic network configuration can be achieved with: @@ -14,4 +14,4 @@ sudo mkdir -p /etc/cni/net.d curl -qsSL https://raw.githubusercontent.com/containers/libpod/master/cni/87-podman-bridge.conflist | sudo tee /etc/cni/net.d/87-podman-bridge.conf ``` -Dependent upon your CNI configuration, you will need to install as a minimum the `port` and `bridge` [CNI plugins](https://github.com/containernetworking/plugins) into `/opt/cni/bin` (or the directory specified by `cni_plugin_dir` in libpod.conf). Please refer to the [CNI](https://github.com/containernetworking) project page in GitHub for more information. +Dependent upon your CNI configuration, you will need to install as a minimum the `port` and `bridge` [CNI plugins](https://github.com/containernetworking/plugins) into `/opt/cni/bin` (or the directory specified by `cni_plugin_dir` in containers.conf). Please refer to the [CNI](https://github.com/containernetworking) project page in GitHub for more information. |