diff options
author | Vanessa Sochat <vsochat@stanford.edu> | 2019-04-12 14:26:48 -0400 |
---|---|---|
committer | Vanessa Sochat <vsochat@stanford.edu> | 2019-04-12 15:42:30 -0400 |
commit | 02541388df6dbd5907f254606a9b67ea40db0cd5 (patch) | |
tree | 552ce71307123974ea8e3676e2dab0db5efe83c9 /install.md | |
parent | 89ffcf9df9d83bc8e0ea7c8004591fb0825117cf (diff) | |
download | podman-02541388df6dbd5907f254606a9b67ea40db0cd5.tar.gz podman-02541388df6dbd5907f254606a9b67ea40db0cd5.tar.bz2 podman-02541388df6dbd5907f254606a9b67ea40db0cd5.zip |
adding uidmap to install steps for ubuntu
Signed-off-by: Vanessa Sochat <vsochat@stanford.edu>
Diffstat (limited to 'install.md')
-rw-r--r-- | install.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/install.md b/install.md index 80ae03208..548b38c1b 100644 --- a/install.md +++ b/install.md @@ -55,12 +55,14 @@ sudo yum module install -y container-tools:1.0 ```bash sudo apt-get update -qq -sudo apt-get install -qq -y software-properties-common +sudo apt-get install -qq -y software-properties-common uidmap sudo add-apt-repository -y ppa:projectatomic/ppa sudo apt-get update -qq sudo apt-get -qq -y install podman ``` +Take note of the [Build and Run Dependencies](#build-and-run-dependencies) listed below if you run into any issues. + ## Building from scratch ### Prerequisites @@ -130,7 +132,8 @@ apt-get install -y \ libprotobuf-c0-dev \ libseccomp-dev \ libselinux1-dev \ - pkg-config + pkg-config \ + uidmap ``` Debian, Ubuntu, and related distributions will also need to do the following setup: |