Update links to Docker Hub

Updates links to Docker Hub with their new
URLs to prevent redirects.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2016-03-04 15:48:52 +01:00
parent 29bade2cd0
commit 69004ff67e
9 changed files with 21 additions and 21 deletions

View File

@ -101,7 +101,7 @@ and [its documents](http://docs.fluentd.org/).
To use this logging driver, start the `fluentd` daemon on a host. We recommend To use this logging driver, start the `fluentd` daemon on a host. We recommend
that you use [the Fluentd docker that you use [the Fluentd docker
image](https://registry.hub.docker.com/u/fluent/fluentd/). This image is image](https://hub.docker.com/r/fluent/fluentd/). This image is
especially useful if you want to aggregate multiple container logs on a each especially useful if you want to aggregate multiple container logs on a each
host then, later, transfer the logs to another Fluentd node to create an host then, later, transfer the logs to another Fluentd node to create an
aggregate store. aggregate store.

View File

@ -17,7 +17,7 @@ MongoDB pre-installed. We'll also see how to `push` that image to the
[Docker Hub registry](https://hub.docker.com) and share it with others! [Docker Hub registry](https://hub.docker.com) and share it with others!
> **Note:** This guide will show the mechanics of building a MongoDB container, but > **Note:** This guide will show the mechanics of building a MongoDB container, but
> you will probably want to use the official image on [Docker Hub]( https://registry.hub.docker.com/_/mongo/) > you will probably want to use the official image on [Docker Hub]( https://hub.docker.com/_/mongo/)
Using Docker and containers for deploying [MongoDB](https://www.mongodb.org/) Using Docker and containers for deploying [MongoDB](https://www.mongodb.org/)
instances will bring several benefits, such as: instances will bring several benefits, such as:
@ -49,7 +49,7 @@ Although optional, it is handy to have comments at the beginning of a
> the *parent* of your *Dockerized MongoDB* image. > the *parent* of your *Dockerized MongoDB* image.
We will build our image using the latest version of Ubuntu from the We will build our image using the latest version of Ubuntu from the
[Docker Hub Ubuntu](https://registry.hub.docker.com/_/ubuntu/) repository. [Docker Hub Ubuntu](https://hub.docker.com/_/ubuntu/) repository.
# Format: FROM repository[:version] # Format: FROM repository[:version]
FROM ubuntu:latest FROM ubuntu:latest

View File

@ -67,7 +67,7 @@ Open the `Dockerfile` in your favorite text editor
Define the parent image you want to use to build your own image on Define the parent image you want to use to build your own image on
top of. Here, we'll use top of. Here, we'll use
[CentOS](https://registry.hub.docker.com/_/centos/) (tag: `centos6`) [CentOS](https://hub.docker.com/_/centos/) (tag: `centos6`)
available on the [Docker Hub](https://hub.docker.com/): available on the [Docker Hub](https://hub.docker.com/):
FROM centos:centos6 FROM centos:centos6

View File

@ -20,7 +20,7 @@ Create an empty file called `Dockerfile`:
$ touch Dockerfile $ touch Dockerfile
Next, define the parent image you want to use to build your image on top Next, define the parent image you want to use to build your image on top
of. We'll use [Ubuntu](https://registry.hub.docker.com/_/ubuntu/) (tag: of. We'll use [Ubuntu](https://hub.docker.com/_/ubuntu/) (tag:
`trusty`), which is available on [Docker Hub](https://hub.docker.com): `trusty`), which is available on [Docker Hub](https://hub.docker.com):
# Riak # Riak

View File

@ -64,7 +64,7 @@ or use it as part of your `FROM` line in your `Dockerfile(s)`.
$ docker pull crux $ docker pull crux
$ docker run -i -t crux $ docker run -i -t crux
There are also user contributed [CRUX based image(s)](https://registry.hub.docker.com/repos/crux/) on the Docker Hub. There are also user contributed [CRUX based image(s)](https://hub.docker.com/_/crux/) on the Docker Hub.
## Uninstallation ## Uninstallation

View File

@ -178,8 +178,8 @@ A repository is a set of Docker images. A repository can be shared by pushing it
to a [registry](#registry) server. The different images in the repository can be to a [registry](#registry) server. The different images in the repository can be
labeled using [tags](#tag). labeled using [tags](#tag).
Here is an example of the shared [nginx repository](https://registry.hub.docker.com/_/nginx/) Here is an example of the shared [nginx repository](https://hub.docker.com/_/nginx/)
and its [tags](https://registry.hub.docker.com/_/nginx/tags/manage/) and its [tags](https://hub.docker.com/r/library/nginx/tags/)
## Swarm ## Swarm

View File

@ -19,14 +19,14 @@ used Docker images that already exist, for example the `ubuntu` image and the
You also discovered that Docker stores downloaded images on the Docker host. If You also discovered that Docker stores downloaded images on the Docker host. If
an image isn't already present on the host then it'll be downloaded from a an image isn't already present on the host then it'll be downloaded from a
registry: by default the [Docker Hub Registry](https://registry.hub.docker.com). registry: by default the [Docker Hub Registry](https://hub.docker.com).
In this section you're going to explore Docker images a bit more In this section you're going to explore Docker images a bit more
including: including:
* Managing and working with images locally on your Docker host. * Managing and working with images locally on your Docker host.
* Creating basic images. * Creating basic images.
* Uploading images to [Docker Hub Registry](https://registry.hub.docker.com). * Uploading images to [Docker Hub Registry](https://hub.docker.com).
## Listing images on the host ## Listing images on the host
@ -521,7 +521,7 @@ You can also reference by digest in `create`, `run`, and `rmi` commands, as well
Once you've built or created a new image you can push it to [Docker Once you've built or created a new image you can push it to [Docker
Hub](https://hub.docker.com) using the `docker push` command. This Hub](https://hub.docker.com) using the `docker push` command. This
allows you to share it with others, either publicly, or push it into [a allows you to share it with others, either publicly, or push it into [a
private repository](https://registry.hub.docker.com/plans/). private repository](https://hub.docker.com/account/billing-plans/).
$ docker push ouruser/sinatra $ docker push ouruser/sinatra
The push refers to a repository [ouruser/sinatra] (len: 1) The push refers to a repository [ouruser/sinatra] (len: 1)

View File

@ -120,7 +120,7 @@ information [here](https://docs.docker.com/docker-hub/).
Sometimes you have images you don't want to make public and share with Sometimes you have images you don't want to make public and share with
everyone. So Docker Hub allows you to have private repositories. You can everyone. So Docker Hub allows you to have private repositories. You can
sign up for a plan [here](https://registry.hub.docker.com/plans/). sign up for a plan [here](https://hub.docker.com/account/billing-plans/).
### Organizations and teams ### Organizations and teams
@ -128,7 +128,7 @@ One of the useful aspects of private repositories is that you can share
them only with members of your organization or team. Docker Hub lets you them only with members of your organization or team. Docker Hub lets you
create organizations where you can collaborate with your colleagues and create organizations where you can collaborate with your colleagues and
manage private repositories. You can learn how to create and manage an organization manage private repositories. You can learn how to create and manage an organization
[here](https://registry.hub.docker.com/account/organizations/). [here](https://hub.docker.com/organizations/).
### Automated Builds ### Automated Builds
@ -140,8 +140,8 @@ triggering a build and update when you push a commit.
#### To setup an Automated Build #### To setup an Automated Build
1. Create a [Docker Hub account](https://hub.docker.com/) and login. 1. Create a [Docker Hub account](https://hub.docker.com/) and login.
2. Link your GitHub or Bitbucket account through the ["Link Accounts"](https://registry.hub.docker.com/account/accounts/) menu. 2. Link your GitHub or Bitbucket account on the ["Linked Accounts &amp; Services"](https://hub.docker.com/account/authorized-services/) page.
3. [Configure an Automated Build](https://registry.hub.docker.com/builds/add/). 3. Select "Create Automated Build" from the "Create" dropdown menu
4. Pick a GitHub or Bitbucket project that has a `Dockerfile` that you want to build. 4. Pick a GitHub or Bitbucket project that has a `Dockerfile` that you want to build.
5. Pick the branch you want to build (the default is the `master` branch). 5. Pick the branch you want to build (the default is the `master` branch).
6. Give the Automated Build a name. 6. Give the Automated Build a name.

View File

@ -130,7 +130,7 @@ various instructions available for use in a `Dockerfile`.
[Dockerfile reference for the FROM instruction](../../reference/builder.md#from) [Dockerfile reference for the FROM instruction](../../reference/builder.md#from)
Whenever possible, use current Official Repositories as the basis for your Whenever possible, use current Official Repositories as the basis for your
image. We recommend the [Debian image](https://registry.hub.docker.com/_/debian/) image. We recommend the [Debian image](https://hub.docker.com/_/debian/)
since its very tightly controlled and kept extremely minimal (currently under since its very tightly controlled and kept extremely minimal (currently under
100 mb), while still being a full distribution. 100 mb), while still being a full distribution.
@ -365,7 +365,7 @@ The `ENTRYPOINT` instruction can also be used in combination with a helper
script, allowing it to function in a similar way to the command above, even script, allowing it to function in a similar way to the command above, even
when starting the tool may require more than one step. when starting the tool may require more than one step.
For example, the [Postgres Official Image](https://registry.hub.docker.com/_/postgres/) For example, the [Postgres Official Image](https://hub.docker.com/_/postgres/)
uses the following script as its `ENTRYPOINT`: uses the following script as its `ENTRYPOINT`:
```bash ```bash
@ -481,10 +481,10 @@ allowing the `Dockerfile` author to make a choice.
These Official Repositories have exemplary `Dockerfile`s: These Official Repositories have exemplary `Dockerfile`s:
* [Go](https://registry.hub.docker.com/_/golang/) * [Go](https://hub.docker.com/_/golang/)
* [Perl](https://registry.hub.docker.com/_/perl/) * [Perl](https://hub.docker.com/_/perl/)
* [Hy](https://registry.hub.docker.com/_/hylang/) * [Hy](https://hub.docker.com/_/hylang/)
* [Rails](https://registry.hub.docker.com/_/rails) * [Rails](https://hub.docker.com/_/rails)
## Additional resources: ## Additional resources: