mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #9194 from flavio/update_installation_docs
Update installation docs
This commit is contained in:
commit
595cd5279e
2 changed files with 20 additions and 21 deletions
|
@ -16,7 +16,7 @@ techniques for installing Docker all the time.
|
||||||
- [Arch Linux](archlinux/)
|
- [Arch Linux](archlinux/)
|
||||||
- [CRUX Linux](cruxlinux/)
|
- [CRUX Linux](cruxlinux/)
|
||||||
- [Gentoo](gentoolinux/)
|
- [Gentoo](gentoolinux/)
|
||||||
- [openSUSE](openSUSE/)
|
- [openSUSE and SUSE Linux Enterprise](SUSE/)
|
||||||
- [FrugalWare](frugalware/)
|
- [FrugalWare](frugalware/)
|
||||||
- [Mac OS X](mac/)
|
- [Mac OS X](mac/)
|
||||||
- [Windows](windows/)
|
- [Windows](windows/)
|
||||||
|
|
|
@ -1,40 +1,39 @@
|
||||||
page_title: Installation on openSUSE
|
page_title: Installation on openSUSE and SUSE Linux Enterprise
|
||||||
page_description: Installation instructions for Docker on openSUSE.
|
page_description: Installation instructions for Docker on openSUSE and on SUSE Linux Enterprise.
|
||||||
page_keywords: openSUSE, virtualbox, docker, documentation, installation
|
page_keywords: openSUSE, SUSE Linux Enterprise, SUSE, SLE, docker, documentation, installation
|
||||||
|
|
||||||
# openSUSE
|
# openSUSE
|
||||||
|
|
||||||
Docker is available in **openSUSE 12.3 and later**. Please note that due
|
Docker is available in **openSUSE 12.3 and later**. Please note that due
|
||||||
to the current Docker limitations Docker is able to run only on the **64
|
to its current limitations Docker is able to run only **64 bit** architecture.
|
||||||
bit** architecture.
|
|
||||||
|
|
||||||
## Installation
|
Docker is not part of the official repositories of openSUSE 12.3 and
|
||||||
|
openSUSE 13.1. Hence it is neccessary to add the [Virtualization
|
||||||
|
repository](https://build.opensuse.org/project/show/Virtualization) from
|
||||||
|
[OBS](https://build.opensuse.org/) to install the `docker` package.
|
||||||
|
|
||||||
The `docker` package from the [Virtualization
|
Execute one of the following commands to add the Virtualization repository:
|
||||||
project](https://build.opensuse.org/project/show/Virtualization) on
|
|
||||||
[OBS](https://build.opensuse.org/) provides Docker on openSUSE.
|
|
||||||
|
|
||||||
To proceed with Docker installation please add the right Virtualization
|
|
||||||
repository.
|
|
||||||
|
|
||||||
# openSUSE 12.3
|
# openSUSE 12.3
|
||||||
$ sudo zypper ar -f http://download.opensuse.org/repositories/Virtualization/openSUSE_12.3/ Virtualization
|
$ sudo zypper ar -f http://download.opensuse.org/repositories/Virtualization/openSUSE_12.3/ Virtualization
|
||||||
$ sudo rpm --import http://download.opensuse.org/repositories/Virtualization/openSUSE_12.3/repodata/repomd.xml.key
|
|
||||||
|
|
||||||
# openSUSE 13.1
|
# openSUSE 13.1
|
||||||
$ sudo zypper ar -f http://download.opensuse.org/repositories/Virtualization/openSUSE_13.1/ Virtualization
|
$ sudo zypper ar -f http://download.opensuse.org/repositories/Virtualization/openSUSE_13.1/ Virtualization
|
||||||
$ sudo rpm --import http://download.opensuse.org/repositories/Virtualization/openSUSE_13.1/repodata/repomd.xml.key
|
|
||||||
|
No extra repository is required for openSUSE 13.2 and later.
|
||||||
|
|
||||||
|
# SUSE Linux Enterprise
|
||||||
|
|
||||||
|
Docker is available in **SUSE Linux Enterprise 12 and later**. Please note that
|
||||||
|
due to its current limitations Docker is able to run only on **64 bit**
|
||||||
|
architecture.
|
||||||
|
|
||||||
|
# Installation
|
||||||
|
|
||||||
Install the Docker package.
|
Install the Docker package.
|
||||||
|
|
||||||
$ sudo zypper in docker
|
$ sudo zypper in docker
|
||||||
|
|
||||||
It's also possible to install Docker using openSUSE's1-click install.
|
|
||||||
Just visit [this](http://software.opensuse.org/package/docker) page,
|
|
||||||
select your openSUSE version and click on the installation link. This
|
|
||||||
will add the right repository to your system and it will also install
|
|
||||||
the docker package.
|
|
||||||
|
|
||||||
Now that it's installed, let's start the Docker daemon.
|
Now that it's installed, let's start the Docker daemon.
|
||||||
|
|
||||||
$ sudo systemctl start docker
|
$ sudo systemctl start docker
|
Loading…
Add table
Reference in a new issue