2015-06-07 23:07:20 -04:00
<!-- [metadata]>
+++
2016-06-13 14:08:11 -04:00
aliases = [
"/engine/userguide/containers/dockerrepos/",
"/engine/userguide/dockerrepos/"
]
2015-09-30 16:11:36 -04:00
title = "Store images on Docker Hub"
2015-06-07 23:07:20 -04:00
description = "Learn how to use the Docker Hub to manage Docker images and work flow"
keywords = ["repo, Docker Hub, Docker Hub, registry, index, repositories, usage, pull image, push image, image, documentation"]
[menu.main]
2016-06-17 01:29:56 -04:00
parent = "engine_learn_menu"
2015-06-07 23:07:20 -04:00
+++
<![end-metadata]-->
2014-05-21 17:05:19 -04:00
2015-09-30 16:11:36 -04:00
# Store images on Docker Hub
2014-05-21 17:05:19 -04:00
2015-09-30 16:11:36 -04:00
So far you've learned how to use the command line to run Docker on your local
host. You've learned how to [pull down images ](usingdocker.md ) to build
containers from existing images and you've learned how to [create your own
images](dockerimages.md).
2014-05-21 17:05:19 -04:00
2015-09-30 16:11:36 -04:00
Next, you're going to learn how to use the [Docker Hub ](https://hub.docker.com )
to simplify and enhance your Docker workflows.
2014-05-21 17:05:19 -04:00
2015-09-30 16:11:36 -04:00
The [Docker Hub ](https://hub.docker.com ) is a public registry maintained by
Docker, Inc. It contains images you can download and use to build
containers. It also provides authentication, work group structure, workflow
tools like webhooks and build triggers, and privacy tools like private
repositories for storing images you don't want to share publicly.
2014-05-21 17:05:19 -04:00
2014-06-01 16:48:04 -04:00
## Docker commands and Docker Hub
2014-05-21 17:05:19 -04:00
2014-06-20 20:10:20 -04:00
Docker itself provides access to Docker Hub services via the `docker search` ,
`pull` , `login` , and `push` commands. This page will show you how these commands work.
### Account creation and login
2016-03-11 07:27:06 -05:00
Before you try an Engine CLI command, if you haven't already, create a Docker
ID. You can do this through [Docker Hub ](https://hub.docker.com/ ). Once you have
a Docker ID, log into your account from the Engine CLI:
2014-06-20 20:10:20 -04:00
2016-03-11 07:27:06 -05:00
```bash
$ docker login
```
2014-06-20 20:10:20 -04:00
2016-03-11 07:27:06 -05:00
The `login` command stores your Docker ID authentication credentials in the
`$HOME/.docker/config.json` (Bash notation). For Windows `cmd` users the
notation for this file is `%HOME%\.docker\config.json` ; for PowerShell users
2016-06-13 14:08:11 -04:00
the notation is `$env:Home\.docker\config.json` .
2014-06-20 20:10:20 -04:00
2016-03-11 07:27:06 -05:00
Once you have logged in from the command line, you can `commit` and `push`
Engine subcommands to interact with your repos on Docker Hub.
2014-05-21 17:05:19 -04:00
## Searching for images
2014-06-20 20:52:30 -04:00
You can search the [Docker Hub ](https://hub.docker.com ) registry via its search
2014-06-20 20:10:20 -04:00
interface or by using the command line interface. Searching can find images by image
name, user name, or description:
2014-05-21 17:05:19 -04:00
2015-03-26 14:12:37 -04:00
$ docker search centos
2016-06-30 19:46:57 -04:00
2015-08-21 13:27:20 -04:00
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
centos The official build of CentOS 1223 [OK]
tianon/centos CentOS 5 and 6, created using rinse instea... 33
2014-05-21 17:05:19 -04:00
...
2015-04-21 23:36:27 -04:00
There you can see two example results: `centos` and `tianon/centos` . The second
result shows that it comes from the public repository of a user, named
`tianon/` , while the first result, `centos` , doesn't explicitly list a
repository which means that it comes from the trusted top-level namespace for
2015-10-09 19:50:41 -04:00
[Official Repositories ](https://docs.docker.com/docker-hub/official_repos/ ). The `/` character separates
2015-04-21 23:36:27 -04:00
a user's repository from the image name.
2014-05-21 17:05:19 -04:00
2014-06-20 20:10:20 -04:00
Once you've found the image you want, you can download it with `docker pull <imagename>` :
2014-05-21 17:05:19 -04:00
2015-03-26 14:12:37 -04:00
$ docker pull centos
2016-06-30 19:46:57 -04:00
2015-08-21 13:27:20 -04:00
Using default tag: latest
latest: Pulling from library/centos
f1b10cd84249: Pull complete
c852f6d61e65: Pull complete
7322fbe74aa5: Pull complete
Digest: sha256:90305c9112250c7e3746425477f1c4ef112b03b4abe78c612e092037bfecc3b7
Status: Downloaded newer image for centos:latest
2014-09-23 18:53:43 -04:00
2014-06-20 20:10:20 -04:00
You now have an image from which you can run containers.
2014-05-21 17:05:19 -04:00
2015-08-21 13:27:20 -04:00
### Specific Versions or Latest
Using `docker pull centos` is equivalent to using `docker pull centos:latest` .
To pull an image that is not the default latest image you can be more precise
with the image that you want.
For example, to pull version 5 of `centos` use `docker pull centos:centos5` .
In this example, `centos5` is the tag labeling an image in the `centos`
repository for a version of `centos` .
To find a list of tags pointing to currently available versions of a repository
see the [Docker Hub ](https://hub.docker.com ) registry.
2014-06-01 16:48:04 -04:00
## Contributing to Docker Hub
2014-05-21 17:05:19 -04:00
2014-06-01 16:48:04 -04:00
Anyone can pull public images from the [Docker Hub ](https://hub.docker.com )
2014-05-21 17:05:19 -04:00
registry, but if you would like to share your own images, then you must
2015-10-09 19:50:41 -04:00
[register first ](https://docs.docker.com/docker-hub/accounts ).
2014-05-21 17:05:19 -04:00
2014-06-01 16:48:04 -04:00
## Pushing a repository to Docker Hub
2014-05-21 17:05:19 -04:00
2014-06-20 20:10:20 -04:00
In order to push a repository to its registry, you need to have named an image
2014-05-21 17:05:19 -04:00
or committed your container to a named image as we saw
2015-10-09 19:50:41 -04:00
[here ](dockerimages.md ).
2014-05-21 17:05:19 -04:00
2014-06-20 20:10:20 -04:00
Now you can push this repository to the registry designated by its name or tag.
2014-05-21 17:05:19 -04:00
2015-03-26 14:12:37 -04:00
$ docker push yourname/newimage
2014-05-21 17:05:19 -04:00
2014-06-20 20:10:20 -04:00
The image will then be uploaded and available for use by your team-mates and/or the
community.
2014-05-21 17:05:19 -04:00
2014-06-01 16:48:04 -04:00
## Features of Docker Hub
2014-05-21 17:05:19 -04:00
2014-06-20 20:10:20 -04:00
Let's take a closer look at some of the features of Docker Hub. You can find more
2015-06-10 02:13:11 -04:00
information [here ](https://docs.docker.com/docker-hub/ ).
2014-05-21 17:05:19 -04:00
* Private repositories
* Organizations and teams
* Automated Builds
* Webhooks
2015-04-21 11:50:09 -04:00
### Private repositories
2014-05-21 17:05:19 -04:00
Sometimes you have images you don't want to make public and share with
2014-06-01 16:48:04 -04:00
everyone. So Docker Hub allows you to have private repositories. You can
2016-03-04 09:48:52 -05:00
sign up for a plan [here ](https://hub.docker.com/account/billing-plans/ ).
2014-05-21 17:05:19 -04:00
2014-06-20 20:10:20 -04:00
### Organizations and teams
2014-05-21 17:05:19 -04:00
One of the useful aspects of private repositories is that you can share
2014-06-01 16:48:04 -04:00
them only with members of your organization or team. Docker Hub lets you
2014-05-21 17:05:19 -04:00
create organizations where you can collaborate with your colleagues and
2014-06-20 20:10:20 -04:00
manage private repositories. You can learn how to create and manage an organization
2016-03-04 09:48:52 -05:00
[here ](https://hub.docker.com/organizations/ ).
2014-05-21 17:05:19 -04:00
2014-06-20 20:10:20 -04:00
### Automated Builds
2014-05-21 17:05:19 -04:00
2014-06-20 20:10:20 -04:00
Automated Builds automate the building and updating of images from
2015-06-13 12:21:50 -04:00
[GitHub ](https://www.github.com ) or [Bitbucket ](http://bitbucket.com ), directly on Docker
Hub. It works by adding a commit hook to your selected GitHub or Bitbucket repository,
2014-06-20 20:10:20 -04:00
triggering a build and update when you push a commit.
2014-05-21 17:05:19 -04:00
2014-06-20 20:10:20 -04:00
#### To setup an Automated Build
2014-05-21 17:05:19 -04:00
2014-06-01 16:48:04 -04:00
1. Create a [Docker Hub account ](https://hub.docker.com/ ) and login.
2016-03-04 09:48:52 -05:00
2. Link your GitHub or Bitbucket account on the ["Linked Accounts & Services" ](https://hub.docker.com/account/authorized-services/ ) page.
3. Select "Create Automated Build" from the "Create" dropdown menu
2015-06-13 12:21:50 -04:00
4. Pick a GitHub or Bitbucket project that has a `Dockerfile` that you want to build.
2014-05-21 17:05:19 -04:00
5. Pick the branch you want to build (the default is the `master` branch).
6. Give the Automated Build a name.
7. Assign an optional Docker tag to the Build.
8. Specify where the `Dockerfile` is located. The default is `/` .
Once the Automated Build is configured it will automatically trigger a
2014-06-20 20:10:20 -04:00
build and, in a few minutes, you should see your new Automated Build on the [Docker Hub ](https://hub.docker.com )
2015-06-13 12:21:50 -04:00
Registry. It will stay in sync with your GitHub and Bitbucket repository until you
2014-05-21 17:05:19 -04:00
deactivate the Automated Build.
2015-07-24 02:08:45 -04:00
To check the output and status of your Automated Build repositories, click on a repository name within the ["Your Repositories" page ](https://registry.hub.docker.com/repos/ ). Automated Builds are indicated by a check-mark icon next to the repository name. Within the repository details page, you may click on the "Build Details" tab to view the status and output of all builds triggered by the Docker Hub.
2014-05-21 17:05:19 -04:00
Once you've created an Automated Build you can deactivate or delete it. You
2014-06-20 20:10:20 -04:00
cannot, however, push to an Automated Build with the `docker push` command.
2015-06-13 12:21:50 -04:00
You can only manage it by committing code to your GitHub or Bitbucket
2014-05-21 17:05:19 -04:00
repository.
You can create multiple Automated Builds per repository and configure them
to point to specific `Dockerfile` 's or Git branches.
2015-04-21 11:50:09 -04:00
#### Build triggers
2014-05-21 17:05:19 -04:00
2014-06-01 16:48:04 -04:00
Automated Builds can also be triggered via a URL on Docker Hub. This
2014-05-21 17:05:19 -04:00
allows you to rebuild an Automated build image on demand.
2014-06-20 20:10:20 -04:00
### Webhooks
2014-05-21 17:05:19 -04:00
Webhooks are attached to your repositories and allow you to trigger an
event when an image or updated image is pushed to the repository. With
2014-06-20 20:10:20 -04:00
a webhook you can specify a target URL and a JSON payload that will be
2014-05-21 17:05:19 -04:00
delivered when the image is pushed.
2014-12-02 16:42:04 -05:00
See the Docker Hub documentation for [more information on
2015-06-10 02:13:11 -04:00
webhooks](https://docs.docker.com/docker-hub/repos/#webhooks)
2014-11-24 17:54:50 -05:00
2014-05-21 17:05:19 -04:00
## Next steps
Go and use Docker!