mirror of https://github.com/containers/podman.git
docs/tutorials: add a basic network config
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
parent
921ccac10c
commit
4faf8d8836
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue