Browse code

Lowercase world, because its not important.

Docker-DCO-1.1-Signed-off-by: Sven Dowideit <SvenDowideit@docker.com> (github: SvenDowideit)

Sven Dowideit authored on 2014/07/02 07:07:05
Showing 5 changed files
... ...
@@ -24,7 +24,7 @@ describes your app and its dependencies:
24 24
       "name": "docker-centos-hello",
25 25
       "private": true,
26 26
       "version": "0.0.1",
27
-      "description": "Node.js Hello World app on CentOS using docker",
27
+      "description": "Node.js Hello world app on CentOS using docker",
28 28
       "author": "Daniel Gasienica <daniel@gasienica.ch>",
29 29
       "dependencies": {
30 30
         "express": "3.2.4"
... ...
@@ -42,7 +42,7 @@ app using the [Express.js](http://expressjs.com/) framework:
42 42
     // App
43 43
     var app = express();
44 44
     app.get('/', function (req, res) {
45
-      res.send('Hello World\n');
45
+      res.send('Hello world\n');
46 46
     });
47 47
 
48 48
     app.listen(PORT);
... ...
@@ -184,7 +184,7 @@ Now you can call your app using `curl` (install if needed via:
184 184
     Date: Sun, 02 Jun 2013 03:53:22 GMT
185 185
     Connection: keep-alive
186 186
 
187
-    Hello World
187
+    Hello world
188 188
 
189 189
 We hope this tutorial helped you get up and running with Node.js and
190 190
 CentOS on Docker. You can get the full source code at
... ...
@@ -246,7 +246,7 @@ See also:
246 246
     drwxr-xr-x    2 root     root        4.0K Mar 12  2013 tmp
247 247
     drwxr-xr-x    2 root     root        4.0K Nov 15 23:34 usr
248 248
      ---> b35f4035db3f
249
-    Step 3 : CMD echo Hello World
249
+    Step 3 : CMD echo Hello world
250 250
      ---> Running in 02071fceb21b
251 251
      ---> f52f38b7823e
252 252
     Successfully built f52f38b7823e
... ...
@@ -277,7 +277,7 @@ affect the build cache.
277 277
     Uploading context
278 278
     Step 0 : FROM busybox
279 279
      ---> 769b9341d937
280
-    Step 1 : CMD echo Hello World
280
+    Step 1 : CMD echo Hello world
281 281
      ---> Using cache
282 282
      ---> 99cc1ad10469
283 283
     Successfully built 99cc1ad10469
... ...
@@ -287,7 +287,7 @@ affect the build cache.
287 287
     Uploading context
288 288
     Step 0 : FROM busybox
289 289
      ---> 769b9341d937
290
-    Step 1 : CMD echo Hello World
290
+    Step 1 : CMD echo Hello world
291 291
      ---> Using cache
292 292
      ---> 99cc1ad10469
293 293
     Successfully built 99cc1ad10469
... ...
@@ -65,7 +65,7 @@ Your Docker Hub account is now active and ready for you to use!
65 65
 
66 66
 ##  Next steps
67 67
 
68
-Next, let's start learning how to Dockerize applications with our "Hello World"
68
+Next, let's start learning how to Dockerize applications with our "Hello world"
69 69
 exercise.
70 70
 
71 71
 Go to [Dockerizing Applications](/userguide/dockerizing).
... ...
@@ -1,20 +1,20 @@
1
-page_title: Dockerizing Applications: A "Hello World"
2
-page_description: A simple "Hello World" exercise that introduced you to Docker.
1
+page_title: Dockerizing Applications: A "Hello world"
2
+page_description: A simple "Hello world" exercise that introduced you to Docker.
3 3
 page_keywords: docker guide, docker, docker platform, virtualization framework, how to, dockerize, dockerizing apps, dockerizing applications, container, containers
4 4
 
5
-# Dockerizing Applications: A "Hello World"
5
+# Dockerizing Applications: A "Hello world"
6 6
 
7 7
 *So what's this Docker thing all about?*
8 8
 
9 9
 Docker allows you to run applications inside containers. Running an
10 10
 application inside a container takes a single command: `docker run`.
11 11
 
12
-## Hello World
12
+## Hello world
13 13
 
14 14
 Let's try it now.
15 15
 
16
-    $ sudo docker run ubuntu:14.04 /bin/echo 'Hello World'
17
-    Hello World
16
+    $ sudo docker run ubuntu:14.04 /bin/echo 'Hello world'
17
+    Hello world
18 18
 
19 19
 And you just launched your first container!
20 20
 
... ...
@@ -34,17 +34,17 @@ image registry: [Docker Hub](https://hub.docker.com).
34 34
 
35 35
 Next we told Docker what command to run inside our new container:
36 36
 
37
-    /bin/echo 'Hello World'
37
+    /bin/echo 'Hello world'
38 38
 
39 39
 When our container was launched Docker created a new Ubuntu 14.04
40 40
 environment and then executed the `/bin/echo` command inside it. We saw
41 41
 the result on the command line:
42 42
 
43
-    Hello World
43
+    Hello world
44 44
 
45 45
 So what happened to our container after that? Well Docker containers
46 46
 only run as long as the command you specify is active. Here, as soon as
47
-`Hello World` was echoed, the container stopped.
47
+`Hello world` was echoed, the container stopped.
48 48
 
49 49
 ## An Interactive Container
50 50
 
... ...
@@ -88,7 +88,7 @@ use the `exit` command to finish.
88 88
 As with our previous container, once the Bash shell process has
89 89
 finished, the container is stopped.
90 90
 
91
-## A Daemonized Hello World
91
+## A Daemonized Hello world
92 92
 
93 93
 Now a container that runs a command and then exits has some uses but
94 94
 it's not overly helpful. Let's create a container that runs as a daemon,
... ...
@@ -99,7 +99,7 @@ Again we can do this with the `docker run` command:
99 99
     $ sudo docker run -d ubuntu:14.04 /bin/sh -c "while true; do echo hello world; sleep 1; done"
100 100
     1e5535038e285177d5214659a068137486f96ee5c2e85a4ac52dc83f2ebe4147
101 101
 
102
-Wait what? Where's our "Hello World" Let's look at what we've run here.
102
+Wait what? Where's our "Hello world" Let's look at what we've run here.
103 103
 It should look pretty familiar. We ran `docker run` but this time we
104 104
 specified a flag: `-d`. The `-d` flag tells Docker to run the container
105 105
 and put it in the background, to daemonize it.
... ...
@@ -29,7 +29,7 @@ environment. To learn more;
29 29
 
30 30
 Go to [Using Docker Hub](/userguide/dockerhub).
31 31
 
32
-## Dockerizing Applications: A "Hello World"
32
+## Dockerizing Applications: A "Hello world"
33 33
 
34 34
 *How do I run applications inside containers?*
35 35