github.com/brahmaroutu/docker@v1.2.1-0.20160809185609-eb28dde01f16/docs/getstarted/step_five.md (about)

     1  <!--[metadata]>
     2  +++
     3  aliases = [
     4  "/mac/step_five/",
     5  "/windows/step_five/",
     6  "/linux/step_five/",
     7  ]
     8  title = "Create a Docker Hub account & repository"
     9  description = "Getting started with Docker"
    10  keywords = ["beginner, getting started, Docker"]
    11  [menu.main]
    12  identifier = "getstart_docker_hub"
    13  parent = "tutorial_getstart_menu"
    14  weight = 5
    15  +++
    16  <![end-metadata]-->
    17  
    18  # Create a Docker Hub account & repository
    19  
    20  You've built something really cool, you should share it. In this next section,
    21  you'll do just that. You'll need a Docker Hub account. Then, you'll push your
    22  image up to it so other people with Docker Engine can run it.
    23  
    24  
    25  ## Step 1: Sign up for an account
    26  
    27  1. Use your browser to navigate to <a href="https://hub.docker.com/?utm_source=getting_started_guide&utm_medium=embedded_MacOSX&utm_campaign=create_docker_hub_account" target="_blank">the Docker Hub signup page</a>.
    28  
    29  	Your browser displays the page.
    30  
    31  	![Docker Hub signup](tutimg/hub_signup.png)
    32  
    33  2. Fill out the form on the signup page.
    34  
    35  	Docker Hub is free. Docker does need a name, password, and email address.
    36  
    37  3. Press **Signup**.
    38  
    39  	The browser displays the welcome to Docker Hub page.
    40  
    41  ## Step 2: Verify your email and add a repository
    42  
    43  Before you can share anything on the hub, you need to verify your email address.
    44  
    45  1. Open your email inbox.
    46  
    47  2. Look for the email titled `Please confirm email for your Docker Hub account`.
    48  
    49  	  If you don't see the email, check your Spam folder or wait a moment for the email to arrive.
    50  
    51  2. Open the email and click the **Confirm Your Email** button.
    52  
    53  	 The browser opens Docker Hub to your profile page.
    54  
    55  4. Choose **Create Repository**.
    56  
    57  	The browser opens the **Create Repository** page.
    58  
    59  5. Provide a Repository Name and Short Description.
    60  
    61  6. Make sure Visibility is set to **Public**.
    62  
    63      When you are done, your form should look similar to the following:
    64  
    65  	![Add repo](tutimg/add_repository.png)
    66  
    67  6. Press **Create** when you are done.
    68  
    69  	Docker Hub creates your new repository.
    70  
    71  ## Where to go next
    72  
    73  On this page, you opened an account on Docker Hub and created a new repository.
    74  In the next section, you populate the repository [by tagging and pushing the
    75  image you created earlier](step_six.md).
    76  
    77  
    78  &nbsp;