diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2018-02-15 07:31:46 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-02-15 19:51:46 +0000 |
commit | ab88304162c7013a4d5a13c1f20cb7a85531f8bd (patch) | |
tree | aa780552067a279e13ddc4e1d2decaf885765dff /install.md | |
parent | a67fdeaf0d4d4cc2e5ad16027d98cd3f939ff03e (diff) | |
download | podman-ab88304162c7013a4d5a13c1f20cb7a85531f8bd.tar.gz podman-ab88304162c7013a4d5a13c1f20cb7a85531f8bd.tar.bz2 podman-ab88304162c7013a4d5a13c1f20cb7a85531f8bd.zip |
Touch up tutorial location and install reqs
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Closes: #337
Approved by: rhatdan
Diffstat (limited to 'install.md')
-rw-r--r-- | install.md | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/install.md b/install.md index 535e5b137..332053238 100644 --- a/install.md +++ b/install.md @@ -8,7 +8,7 @@ The latest version of `runc` is expected to be installed on the system. It is pi #### conmon installed -The latest version of `conmon` is expected to be installed on the system. Conmon is used to monitor OCI Runtimes +The latest version of `conmon` is expected to be installed on the system. Conmon is used to monitor OCI Runtimes. #### Setup CNI networking @@ -25,6 +25,7 @@ Fedora, CentOS, RHEL, and related distributions: ```bash yum install -y \ + atomic-registries \ btrfs-progs-devel \ conmon \ containernetworking-cni \ @@ -36,6 +37,7 @@ yum install -y \ go \ golang-github-cpuguy83-go-md2man \ gpgme-devel \ + iptables \ libassuan-devel \ libgpg-error-devel \ libseccomp-devel \ @@ -51,28 +53,36 @@ Debian, Ubuntu, and related distributions: ```bash apt-get install -y \ btrfs-tools \ - cri-o \ git \ golang-go \ + go-md2man \ + iptables \ libassuan-dev \ libdevmapper-dev \ libglib2.0-dev \ libc6-dev \ libgpgme11-dev \ libgpg-error-dev \ + libprotobuf-dev \ + libprotobuf-c0-dev \ libseccomp-dev \ libselinux1-dev \ - pkg-config \ - runc \ - skopeo-containers + pkg-config ``` -Debian, Ubuntu, and related distributions will also need a copy of the development libraries for `ostree`, either in the form of the `libostree-dev` package from the [flatpak](https://launchpad.net/~alexlarsson/+archive/ubuntu/flatpak) PPA, or built [from source](https://github.com/ostreedev/ostree) (more on that [here](https://ostree.readthedocs.io/en/latest/#building)). +Debian, Ubuntu, and related distributions will also need to do the following setup: -If using an older release or a long-term support release, be careful to double-check that the version of `runc` is new enough (running `runc --version` should produce `spec: 1.0.0`), or else build your own. + * A copy of the development libraries for `ostree`, either in the form of the `libostree-dev` package from the [flatpak](https://launchpad.net/~alexlarsson/+archive/ubuntu/flatpak) PPA, or built [from source](https://github.com/ostreedev/ostree) (more on that [here](https://ostree.readthedocs.io/en/latest/#building)). + * [Add required configuration files](https://github.com/projectatomic/libpod/blob/master/docs/tutorials/podman_tutorial.md#adding-required-configuration-files) + * Install conman, CNI plugins and runc + * [Install conman](https://github.com/projectatomic/libpod/blob/master/docs/tutorials/podman_tutorial.md#building-and-installing-conmon) + * [Install CNI plugins](https://github.com/projectatomic/libpod/blob/master/docs/tutorials/podman_tutorial.md#installing-cni-plugins) + * [runc Installation](https://github.com/projectatomic/libpod/blob/master/docs/tutorials/podman_tutorial.md#installing-runc) - Although installable, the latest runc is not available in the Ubuntu repos. Version 1.0.0-rc4 is the minimal requirement. **NOTE** +If using an older release or a long-term support release, be careful to double-check that the version of `runc` is new enough (running `runc --version` should produce `spec: 1.0.0`), or else [build](https://github.com/projectatomic/libpod/blob/master/docs/tutorials/podman_tutorial.md#installing-runc) your own. + Be careful to double-check that the version of golang is new enough, version 1.8.x or higher is required. If needed, golang kits are available at https://golang.org/dl/ **Optional** |