summaryrefslogtreecommitdiff
path: root/docs/tutorials
diff options
context:
space:
mode:
authorVincent Batts <vbatts@hashbangbash.com>2018-11-29 10:09:24 -0500
committerVincent Batts <vbatts@hashbangbash.com>2018-12-17 12:28:55 -0500
commit4faf8d88369578746642c9f39e52a1b68583c0c7 (patch)
tree39d6ea263c7ff2a3ba2a2f657acb0a7074d75eba /docs/tutorials
parent921ccac10c47e0865ec5e4ba00ebb69a03d89473 (diff)
downloadpodman-4faf8d88369578746642c9f39e52a1b68583c0c7.tar.gz
podman-4faf8d88369578746642c9f39e52a1b68583c0c7.tar.bz2
podman-4faf8d88369578746642c9f39e52a1b68583c0c7.zip
docs/tutorials: add a basic network config
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
Diffstat (limited to 'docs/tutorials')
-rw-r--r--docs/tutorials/podman_tutorial.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/tutorials/podman_tutorial.md b/docs/tutorials/podman_tutorial.md
index 152d65a59..f11083a9e 100644
--- a/docs/tutorials/podman_tutorial.md
+++ b/docs/tutorials/podman_tutorial.md
@@ -81,6 +81,12 @@ $ ./build.sh
$ sudo mkdir -p /usr/libexec/cni
$ sudo cp bin/* /usr/libexec/cni
```
+#### Installing CNI config
+Add a most basic network config
+```console
+mkdir -p /etc/cni/net.d
+curl -qsSL https://raw.githubusercontent.com/containers/libpod/master/cni/87-podman-bridge.conflist | tee /etc/cni/net.d/99-loopback.conf
+```
#### Installing runc
```console
$ git clone https://github.com/opencontainers/runc.git $GOPATH/src/github.com/opencontainers/runc