* Corrected a typo in Fedora install instructions
* Removed the change on docker start command.
Changed the command from `sudo systemctl start docker` to `sudo systemctl docker start` as it was addressed on other PR, so leaving it to the original one.
debian does not have linux-image-extra-virtual or linux-image-extra-$(uname -r) packages. the author might have used a debian based distribution. debian kernels come with the aufs modules per default, no need to install extra packages.
The apt repo layout seems wrong, it only worked after the proposed change.
Also apt-key seems to need `-` to look at stdin; otherwise I got `gpg: can't open `': No such file or directory`
The documentation describes that the "testing" repository
is disabled by default;
> Optional: Enable the testing repository. This repository
> is included in the docker.repo file above but is disabled
> by default.
However, the repo-files had the testing repo enabled.
This patch updates the repo-files to disable the
repository by default.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
With the past version the apt-get update results in a 403 for the docker repository when using a Jessie. Looking at the repo structure I assume that now will also work on the other Debian releases.
The repo-files used in the installation instructions currently use `$releasever`
to configure the right YUM repository to use, however _Server_ releases output
the version in a different format (i.e., `7Server` instead of just `7`).
Given that we don't have separate repositories for "Server" and "Desktop" editions,
and we only support version 7, setting the repo-files to use a fixed version.
This issue was originally reported in
https://github.com/docker/docker/issues/23376
And fixed through 2b36087597, but this change
got lost during the rewrite of the installation docs.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
The yum-utils package is not installed by default
on some cloud providers, causing the
`yum-config-manager --add-repo` step to fail.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
https://fedoramagazine.org/fedora-22-end-of-life-2016-july/
With the recent release of Fedora 24, Fedora 22 will officially enter End Of
Life (EOL) status on July 19th, 2016. After July 19th, all packages in the
Fedora 22 repositories will no longer receive security, bugfix, or enhancement
updates, and no new packages will be added to the Fedora 22 collection.
Upgrading to Fedora 23 or Fedora 24 before July 19th 2016 is highly recommended
for all users still running Fedora 22.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>