diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2019-01-15 17:37:55 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2019-01-16 11:56:39 -0500 |
commit | 4296170aabef60f3949c55883604d5b9d91f8477 (patch) | |
tree | 80a6578032f920d418cf0353cd606e1a826402eb /install.md | |
parent | 1b2f75298d98f59fac73a63599cdca3478bef835 (diff) | |
download | podman-4296170aabef60f3949c55883604d5b9d91f8477.tar.gz podman-4296170aabef60f3949c55883604d5b9d91f8477.tar.bz2 podman-4296170aabef60f3949c55883604d5b9d91f8477.zip |
Installing podman
Add documentation on how to install a packaged version of podman
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'install.md')
-rw-r--r-- | install.md | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/install.md b/install.md index efb568b66..5ee5bed11 100644 --- a/install.md +++ b/install.md @@ -1,5 +1,61 @@ # libpod Installation Instructions +## Installing packaged versions of Podman + +#### [Arch Linux](https://www.archlinux.org) + +Podman is available in the AUR through the [libpod package](https://aur.archlinux.org/packages/libpod/) + +#### [Fedora](https://www.fedoraproject.org), [CentOS](https://www.centos.org) + +```bash +sudo yum -y install podman +``` + + +#### [Fedora-CoreOS](https://coreos.fedoraproject.org), [Fedora SilverBlue](https://silverblue.fedoraproject.org) + +Built-in, no need to install + +#### [Gentoo](https://www.gentoo.org) + +```bash +sudo emerge app-emulation/libpod +``` + +#### [openSUSE](https://www.opensuse.org) + +```bash +sudo zypper install podman +``` + +#### [RHEL7](https://www.redhat.com/en/technologies/linux-platforms/enterprise-linux) + +Subscribe, then enable Extras channel and install podman. + +```bash +sudo subscription-manager repos --enable=rhel-7-server-extras-rpms +sudo yum -y install podman +``` + +#### [RHEL8 Beta](https://www.redhat.com/en/blog/powering-its-future-while-preserving-present-introducing-red-hat-enterprise-linux-8-beta?intcmp=701f2000001Cz6OAAS) + +```bash +sudo yum module enable -y container-tools:1.0 +sudo yum module install -y container-tools:1.0 +``` + +#### [Ubuntu](https://www.ubuntu.com) + +```bash +sudo apt-get update -qq +sudo apt-get install -qq -y software-properties-common +sudo add-apt-repository -y ppa:projectatomic/ppa +sudo apt-get -qq -y install podman +``` + +## Building from scratch + ### Prerequisites #### runc installed |