Skip to content

Commit 69004ff

Browse files
committed
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>
1 parent 29bade2 commit 69004ff

9 files changed

Lines changed: 21 additions & 21 deletions

File tree

docs/admin/logging/fluentd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ and [its documents](http://docs.fluentd.org/).
101101

102102
To use this logging driver, start the `fluentd` daemon on a host. We recommend
103103
that you use [the Fluentd docker
104-
image](https://registry.hub.docker.com/u/fluent/fluentd/). This image is
104+
image](https://hub.docker.com/r/fluent/fluentd/). This image is
105105
especially useful if you want to aggregate multiple container logs on a each
106106
host then, later, transfer the logs to another Fluentd node to create an
107107
aggregate store.

docs/examples/mongodb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ MongoDB pre-installed. We'll also see how to `push` that image to the
1717
[Docker Hub registry](https://hub.docker.com) and share it with others!
1818

1919
> **Note:** This guide will show the mechanics of building a MongoDB container, but
20-
> you will probably want to use the official image on [Docker Hub]( https://registry.hub.docker.com/_/mongo/)
20+
> you will probably want to use the official image on [Docker Hub]( https://hub.docker.com/_/mongo/)
2121
2222
Using Docker and containers for deploying [MongoDB](https://www.mongodb.org/)
2323
instances will bring several benefits, such as:
@@ -49,7 +49,7 @@ Although optional, it is handy to have comments at the beginning of a
4949
> the *parent* of your *Dockerized MongoDB* image.
5050
5151
We will build our image using the latest version of Ubuntu from the
52-
[Docker Hub Ubuntu](https://registry.hub.docker.com/_/ubuntu/) repository.
52+
[Docker Hub Ubuntu](https://hub.docker.com/_/ubuntu/) repository.
5353

5454
# Format: FROM repository[:version]
5555
FROM ubuntu:latest

docs/examples/nodejs_web_app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Open the `Dockerfile` in your favorite text editor
6767

6868
Define the parent image you want to use to build your own image on
6969
top of. Here, we'll use
70-
[CentOS](https://registry.hub.docker.com/_/centos/) (tag: `centos6`)
70+
[CentOS](https://hub.docker.com/_/centos/) (tag: `centos6`)
7171
available on the [Docker Hub](https://hub.docker.com/):
7272

7373
FROM centos:centos6

docs/examples/running_riak_service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Create an empty file called `Dockerfile`:
2020
$ touch Dockerfile
2121

2222
Next, define the parent image you want to use to build your image on top
23-
of. We'll use [Ubuntu](https://registry.hub.docker.com/_/ubuntu/) (tag:
23+
of. We'll use [Ubuntu](https://hub.docker.com/_/ubuntu/) (tag:
2424
`trusty`), which is available on [Docker Hub](https://hub.docker.com):
2525

2626
# Riak

docs/installation/linux/cruxlinux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ or use it as part of your `FROM` line in your `Dockerfile(s)`.
6464
$ docker pull crux
6565
$ docker run -i -t crux
6666

67-
There are also user contributed [CRUX based image(s)](https://registry.hub.docker.com/repos/crux/) on the Docker Hub.
67+
There are also user contributed [CRUX based image(s)](https://hub.docker.com/_/crux/) on the Docker Hub.
6868

6969

7070
## Uninstallation

docs/reference/glossary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@ A repository is a set of Docker images. A repository can be shared by pushing it
178178
to a [registry](#registry) server. The different images in the repository can be
179179
labeled using [tags](#tag).
180180

181-
Here is an example of the shared [nginx repository](https://registry.hub.docker.com/_/nginx/)
182-
and its [tags](https://registry.hub.docker.com/_/nginx/tags/manage/)
181+
Here is an example of the shared [nginx repository](https://hub.docker.com/_/nginx/)
182+
and its [tags](https://hub.docker.com/r/library/nginx/tags/)
183183

184184
## Swarm
185185

docs/userguide/containers/dockerimages.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ used Docker images that already exist, for example the `ubuntu` image and the
1919

2020
You also discovered that Docker stores downloaded images on the Docker host. If
2121
an image isn't already present on the host then it'll be downloaded from a
22-
registry: by default the [Docker Hub Registry](https://registry.hub.docker.com).
22+
registry: by default the [Docker Hub Registry](https://hub.docker.com).
2323

2424
In this section you're going to explore Docker images a bit more
2525
including:
2626

2727
* Managing and working with images locally on your Docker host.
2828
* Creating basic images.
29-
* Uploading images to [Docker Hub Registry](https://registry.hub.docker.com).
29+
* Uploading images to [Docker Hub Registry](https://hub.docker.com).
3030

3131
## Listing images on the host
3232

@@ -521,7 +521,7 @@ You can also reference by digest in `create`, `run`, and `rmi` commands, as well
521521
Once you've built or created a new image you can push it to [Docker
522522
Hub](https://hub.docker.com) using the `docker push` command. This
523523
allows you to share it with others, either publicly, or push it into [a
524-
private repository](https://registry.hub.docker.com/plans/).
524+
private repository](https://hub.docker.com/account/billing-plans/).
525525

526526
$ docker push ouruser/sinatra
527527
The push refers to a repository [ouruser/sinatra] (len: 1)

docs/userguide/containers/dockerrepos.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,15 +120,15 @@ information [here](https://docs.docker.com/docker-hub/).
120120

121121
Sometimes you have images you don't want to make public and share with
122122
everyone. So Docker Hub allows you to have private repositories. You can
123-
sign up for a plan [here](https://registry.hub.docker.com/plans/).
123+
sign up for a plan [here](https://hub.docker.com/account/billing-plans/).
124124

125125
### Organizations and teams
126126

127127
One of the useful aspects of private repositories is that you can share
128128
them only with members of your organization or team. Docker Hub lets you
129129
create organizations where you can collaborate with your colleagues and
130130
manage private repositories. You can learn how to create and manage an organization
131-
[here](https://registry.hub.docker.com/account/organizations/).
131+
[here](https://hub.docker.com/organizations/).
132132

133133
### Automated Builds
134134

@@ -140,8 +140,8 @@ triggering a build and update when you push a commit.
140140
#### To setup an Automated Build
141141

142142
1. Create a [Docker Hub account](https://hub.docker.com/) and login.
143-
2. Link your GitHub or Bitbucket account through the ["Link Accounts"](https://registry.hub.docker.com/account/accounts/) menu.
144-
3. [Configure an Automated Build](https://registry.hub.docker.com/builds/add/).
143+
2. Link your GitHub or Bitbucket account on the ["Linked Accounts &amp; Services"](https://hub.docker.com/account/authorized-services/) page.
144+
3. Select "Create Automated Build" from the "Create" dropdown menu
145145
4. Pick a GitHub or Bitbucket project that has a `Dockerfile` that you want to build.
146146
5. Pick the branch you want to build (the default is the `master` branch).
147147
6. Give the Automated Build a name.

docs/userguide/eng-image/dockerfile_best-practices.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ various instructions available for use in a `Dockerfile`.
130130
[Dockerfile reference for the FROM instruction](../../reference/builder.md#from)
131131

132132
Whenever possible, use current Official Repositories as the basis for your
133-
image. We recommend the [Debian image](https://registry.hub.docker.com/_/debian/)
133+
image. We recommend the [Debian image](https://hub.docker.com/_/debian/)
134134
since it’s very tightly controlled and kept extremely minimal (currently under
135135
100 mb), while still being a full distribution.
136136

@@ -365,7 +365,7 @@ The `ENTRYPOINT` instruction can also be used in combination with a helper
365365
script, allowing it to function in a similar way to the command above, even
366366
when starting the tool may require more than one step.
367367

368-
For example, the [Postgres Official Image](https://registry.hub.docker.com/_/postgres/)
368+
For example, the [Postgres Official Image](https://hub.docker.com/_/postgres/)
369369
uses the following script as its `ENTRYPOINT`:
370370

371371
```bash
@@ -481,10 +481,10 @@ allowing the `Dockerfile` author to make a choice.
481481

482482
These Official Repositories have exemplary `Dockerfile`s:
483483

484-
* [Go](https://registry.hub.docker.com/_/golang/)
485-
* [Perl](https://registry.hub.docker.com/_/perl/)
486-
* [Hy](https://registry.hub.docker.com/_/hylang/)
487-
* [Rails](https://registry.hub.docker.com/_/rails)
484+
* [Go](https://hub.docker.com/_/golang/)
485+
* [Perl](https://hub.docker.com/_/perl/)
486+
* [Hy](https://hub.docker.com/_/hylang/)
487+
* [Rails](https://hub.docker.com/_/rails)
488488

489489
## Additional resources:
490490

0 commit comments

Comments
 (0)