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

doc: add Aliyun Linux 2 support to INSTALLATION.md #2911

Merged
merged 1 commit into from
Jun 18, 2019
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
22 changes: 21 additions & 1 deletion INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,27 @@ As a developer who wish to hack on PouchContainer, please read [Developer Quick-

## End User Quick-Start

You can install PouchContainer automatically on your machine with very few steps. Currently we support two kinds of Linux Distribution: Ubuntu and CentOS.
You can install PouchContainer automatically on your machine with very few steps. Currently we support the following Linux Distributions: Alibaba Cloud Linux 2, Ubuntu and CentOS.

### Alibaba Cloud Linux 2

**1. Install PouchContainer**

There is an official PouchContainer build in Alibaba Cloud Linux 2 (a.k.a. Aliyun Linux 2) Yum repo, you should be able to install it via Yum tool without adding any extra repo files explicitly. Note that Alibaba Cloud Linux 1 (Aliyun Linux 17.01) is not supported for now.

If you are an Alibaba Cloud Linux 2 user, simply run the following command to install the latest version of PouchContainer:

``` bash
sudo yum install -y pouch
```

**2. Start PouchContainer**

``` bash
sudo systemctl start pouch
```

Afterwards, you can pull an image and run PouchContainer containers.

### Ubuntu

Expand Down