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`
* take a stab at fixing a broken link
Signed-off-by: LRubin <lrubin@docker.com>
* Update systemd.md
Removed the quotes from the --graph option on line 130. Using quotes works for version 1.12 of Docker but with 1.13, Docker will create a directory named <double-quotes> under / and then create a directory of mnt/docker-data" under that 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>
* Fix title in Engine API getting started
A weird character was causing it to not be rendered correctly.
Signed-off-by: Ben Firshman <ben@firshman.co.uk>
* Update getting-started.md
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>