Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: make Installation more compatible #930

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: make Installation more compatible
Signed-off-by: Allen Sun <allensun.shl@alibaba-inc.com>
allencloud committed Mar 20, 2018
commit 1ccfbf0f6d30956cdacee0103683e209433238a8
13 changes: 3 additions & 10 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
@@ -27,11 +27,7 @@ sudo apt-get install lxcfs
Install packages to allow 'apt' to use a repository over HTTPS:

```bash
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
sudo apt-get install curl apt-transport-https ca-certificates software-properties-common
```

**1. Add Pouch's official GPG key**
@@ -56,8 +52,7 @@ sub 2048R/B3D2A915 2018-01-31
Before you install Pouch for the first time on a new host machine, you need to set up the Pouch repository. We enabled `stabel` repository by default, you always need the `stable` repository. To add the `test` repository, add the word `test` after the word `stable` in the command line below. Afterward, you can install and update Pouch from the repository.

```bash
sudo add-apt-repository \
"deb http://mirrors.aliyun.com/opsx/pouch/linux/debian/ pouch stable"
sudo add-apt-repository "deb http://mirrors.aliyun.com/opsx/pouch/linux/debian/ pouch stable"
```

**3. Install pouch**
@@ -112,9 +107,7 @@ sudo yum install -y yum-utils
Use the following command to add Pouch repository.

```bash
sudo yum-config-manager \
--add-repo \
http://mirrors.aliyun.com/opsx/opsx-centos7.repo
sudo yum-config-manager --add-repo http://mirrors.aliyun.com/opsx/opsx-centos7.repo
sudo yum update
```