|
...
|
...
|
@@ -4,70 +4,69 @@ page_keywords: documentation, docs, the docker guide, docker guide, docker, dock
|
|
4
|
4
|
|
|
5
|
5
|
# Getting Started with Docker Hub
|
|
6
|
6
|
|
|
7
|
|
-*How do I use Docker Hub?*
|
|
8
|
7
|
|
|
9
|
|
-In this section we're going to introduce you, very quickly!, to
|
|
10
|
|
-[Docker Hub](https://hub.docker.com) and create an account.
|
|
|
8
|
+This section provides a quick introduction to the [Docker Hub](https://hub.docker.com)
|
|
|
9
|
+and will show you how to create an account.
|
|
11
|
10
|
|
|
12
|
|
-[Docker Hub](https://hub.docker.com) is the central hub for Docker. It
|
|
13
|
|
-helps you to manage Docker and its components. It provides services such
|
|
14
|
|
-as:
|
|
|
11
|
+The [Docker Hub](https://hub.docker.com) is a centralized resource for working with
|
|
|
12
|
+Docker and its components. Docker Hub helps you collaborate with colleagues and get the
|
|
|
13
|
+most out of Docker.To do this, it provides services such as:
|
|
15
|
14
|
|
|
16
|
|
-* Hosting images.
|
|
|
15
|
+* Docker image hosting.
|
|
17
|
16
|
* User authentication.
|
|
18
|
|
-* Automated image builds and work flow tools like build triggers and web
|
|
|
17
|
+* Automated image builds and work-flow tools such as build triggers and web
|
|
19
|
18
|
hooks.
|
|
20
|
19
|
* Integration with GitHub and BitBucket.
|
|
21
|
20
|
|
|
22
|
|
-Docker Hub helps you collaborate with colleagues and get the most out of
|
|
23
|
|
-Docker.
|
|
24
|
|
-
|
|
25
|
|
-In order to use Docker Hub you will need to register an account. Don't
|
|
26
|
|
-panic! It's totally free and really easy.
|
|
|
21
|
+In order to use Docker Hub, you will first need to register and create an account. Don't
|
|
|
22
|
+worry, creating an account is simple and free.
|
|
27
|
23
|
|
|
28
|
24
|
## Creating a Docker Hub Account
|
|
29
|
25
|
|
|
30
|
|
-There are two ways you can create a Docker Hub account:
|
|
|
26
|
+There are two ways for you to register and create a Docker Hub account:
|
|
31
|
27
|
|
|
32
|
|
-* Via the web, or
|
|
33
|
|
-* Via the command line.
|
|
|
28
|
+1. Via the web, or
|
|
|
29
|
+2. Via the command line.
|
|
34
|
30
|
|
|
35
|
|
-### Sign up via the web!
|
|
|
31
|
+### Register via the web
|
|
36
|
32
|
|
|
37
|
|
-Fill in the [sign-up form](https://www.docker.io/account/signup/) and
|
|
38
|
|
-choose your user name and specify some details such as an email address.
|
|
|
33
|
+Fill in the [sign-up form](https://hub.docker.com/account/signup/) by
|
|
|
34
|
+choosing your user name and password and specifying email address. You can also sign up
|
|
|
35
|
+for the Docker Weekly mailing list, which has lots of information about what's going on
|
|
|
36
|
+in the world of Docker.
|
|
39
|
37
|
|
|
40
|
38
|

|
|
41
|
39
|
|
|
42
|
|
-### Signup via the command line
|
|
|
40
|
+### Register via the command line
|
|
43
|
41
|
|
|
44
|
|
-You can also create a Docker Hub account via the command line using the
|
|
|
42
|
+You can also create a Docker Hub account via the command line with the
|
|
45
|
43
|
`docker login` command.
|
|
46
|
44
|
|
|
47
|
45
|
$ sudo docker login
|
|
48
|
46
|
|
|
49
|
47
|
### Confirm your email
|
|
50
|
48
|
|
|
51
|
|
-Once you've filled in the form then check your email for a welcome
|
|
52
|
|
-message and activate your account.
|
|
|
49
|
+Once you've filled in the form, check your email for a welcome message and confirmation
|
|
|
50
|
+to activate your account.
|
|
53
|
51
|
|
|
54
|
52
|

|
|
55
|
53
|
|
|
56
|
|
-### Login!
|
|
|
54
|
+### Login
|
|
57
|
55
|
|
|
58
|
|
-Then you can login using the web console:
|
|
|
56
|
+After you complete the confirmation process, you can login using the web console:
|
|
59
|
57
|
|
|
60
|
58
|

|
|
61
|
59
|
|
|
62
|
|
-Or via the command line and the `docker login` command:
|
|
|
60
|
+Or via the command line with the `docker login` command:
|
|
63
|
61
|
|
|
64
|
62
|
$ sudo docker login
|
|
65
|
63
|
|
|
66
|
|
-Now your Docker Hub account is active and ready for you to use!
|
|
|
64
|
+Your Docker Hub account is now active and ready for you to use!
|
|
67
|
65
|
|
|
68
|
66
|
## Next steps
|
|
69
|
67
|
|
|
70
|
|
-Now let's start Dockerizing applications with our "Hello World!" exercise.
|
|
|
68
|
+Next, let's start learning how to Dockerize applications with our "Hello World!"
|
|
|
69
|
+exercise.
|
|
71
|
70
|
|
|
72
|
71
|
Go to [Dockerizing Applications](/userguide/dockerizing).
|
|
73
|
72
|
|