summaryrefslogtreecommitdiff
path: root/install.md
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-05-20 15:46:58 +0200
committerGitHub <noreply@github.com>2019-05-20 15:46:58 +0200
commit18a953918e1d15aded713f9802865807bd25a1e0 (patch)
tree975dce0339d0b7b76450f3b61765f56bbf904685 /install.md
parenta83edf23ac8fb12f8787ead5257b35425e1996d6 (diff)
parent900dd3e6333fe68838214e05f19399afd8887cf2 (diff)
downloadpodman-18a953918e1d15aded713f9802865807bd25a1e0.tar.gz
podman-18a953918e1d15aded713f9802865807bd25a1e0.tar.bz2
podman-18a953918e1d15aded713f9802865807bd25a1e0.zip
Merge pull request #3154 from haircommander/tutorial-conmon
Fixup conmon documentation
Diffstat (limited to 'install.md')
-rw-r--r--install.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/install.md b/install.md
index 82dd4c36a..a278cb4ba 100644
--- a/install.md
+++ b/install.md
@@ -188,13 +188,12 @@ export PATH=$GOPATH/bin:$PATH
#### conmon
The latest version of `conmon` is expected to be installed on the system. Conmon is used to monitor OCI Runtimes.
-To build from source, use the following (if not already executed above, run `export GOPATH=~/go && mkdir -p $GOPATH`):
+To build from source, use the following:
```bash
-git clone https://github.com/cri-o/cri-o $GOPATH/src/github.com/cri-o/cri-o
-cd $GOPATH/src/github.com/cri-o/cri-o
-mkdir bin
-make bin/conmon
+git clone https://github.com/containers/conmon
+cd conmon
+make
sudo install -D -m 755 bin/conmon /usr/libexec/podman/conmon
```