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-21 09:29:01 -0400 |
commit | 330e9144bd49a090484ade39339b3c3453253105 (patch) | |
tree | dabfd54dced8fd684d290927d4a96642f98dc828 /cni | |
parent | a5a5ad184ef8e890bfd083052005e6d862c62729 (diff) | |
download | podman-330e9144bd49a090484ade39339b3c3453253105.tar.gz podman-330e9144bd49a090484ade39339b3c3453253105.tar.bz2 podman-330e9144bd49a090484ade39339b3c3453253105.zip |
Switch references from libpod.conf to containers.conf
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'cni')
-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. |