Browse code

Fix typos

Docker-DCO-1.1-Signed-off-by: Bryan Bess <squarejaw@bsbess.com> (github: squarejaw)

Bryan Bess authored on 2014/07/10 13:14:06
Showing 8 changed files
... ...
@@ -304,7 +304,7 @@
304 304
 - Add newlines to the JSON stream functions.
305 305
 
306 306
 #### Runtime
307
-* Do not ping the registry from the CLI. All requests to registres flow through the daemon.
307
+* Do not ping the registry from the CLI. All requests to registries flow through the daemon.
308 308
 - Check for nil information return in the lxc driver. This fixes panics with older lxc versions.
309 309
 - Devicemapper: cleanups and fix for unmount. Fixes two problems which were causing unmount to fail intermittently.
310 310
 - Devicemapper: remove directory when removing device. Directories don't get left behind when removing the device.
... ...
@@ -896,7 +896,7 @@ With the ongoing changes to the networking and execution subsystems of docker te
896 896
 
897 897
 + Add domainname support
898 898
 + Implement image filtering with path.Match
899
-* Remove unnecesasry warnings
899
+* Remove unnecessary warnings
900 900
 * Remove os/user dependency
901 901
 * Only mount the hostname file when the config exists
902 902
 * Handle signals within the `docker login` command
... ...
@@ -919,7 +919,7 @@ With the ongoing changes to the networking and execution subsystems of docker te
919 919
 + Hack: Vendor all dependencies
920 920
 * Remote API: Bump to v1.5
921 921
 * Packaging: Break down hack/make.sh into small scripts, one per 'bundle': test, binary, ubuntu etc.
922
-* Documentation: General improvments
922
+* Documentation: General improvements
923 923
 
924 924
 ## 0.6.1 (2013-08-23)
925 925
 
... ...
@@ -1189,7 +1189,7 @@ With the ongoing changes to the networking and execution subsystems of docker te
1189 1189
 * Prevent rm of running containers
1190 1190
 * Use go1.1 cookiejar
1191 1191
 - Fix issue detaching from running TTY container
1192
-- Forbid parralel push/pull for a single image/repo. Fixes #311
1192
+- Forbid parallel push/pull for a single image/repo. Fixes #311
1193 1193
 - Fix race condition within Run command when attaching.
1194 1194
 
1195 1195
 #### Client
... ...
@@ -1305,7 +1305,7 @@ With the ongoing changes to the networking and execution subsystems of docker te
1305 1305
 + Add caching to docker builder
1306 1306
 + Add support for docker builder with native API as top level command
1307 1307
 + Implement ENV within docker builder
1308
-- Check the command existance prior create and add Unit tests for the case
1308
+- Check the command existence prior create and add Unit tests for the case
1309 1309
 * use any whitespaces instead of tabs
1310 1310
 
1311 1311
 #### Runtime
... ...
@@ -1344,13 +1344,13 @@ With the ongoing changes to the networking and execution subsystems of docker te
1344 1344
 
1345 1345
 #### Runtime
1346 1346
 
1347
-- Fix the command existance check
1347
+- Fix the command existence check
1348 1348
 - strings.Split may return an empty string on no match
1349 1349
 - Fix an index out of range crash if cgroup memory is not
1350 1350
 
1351 1351
 #### Documentation
1352 1352
 
1353
-* Various improvments
1353
+* Various improvements
1354 1354
 + New example: sharing data between 2 couchdb databases
1355 1355
 
1356 1356
 #### Other
... ...
@@ -1380,7 +1380,7 @@ With the ongoing changes to the networking and execution subsystems of docker te
1380 1380
 ## 0.2.0 (2013-04-23)
1381 1381
 
1382 1382
 - Runtime: ghost containers can be killed and waited for
1383
-* Documentation: update install intructions
1383
+* Documentation: update install instructions
1384 1384
 - Packaging: fix Vagrantfile
1385 1385
 - Development: automate releasing binaries and ubuntu packages
1386 1386
 + Add a changelog
... ...
@@ -22,7 +22,7 @@ inode number of the $graph directory.
22 22
 
23 23
 On the thin pool docker automatically creates a base thin device,
24 24
 called something like `docker-0:33-19478248-base` of a fixed
25
-size. This is automatically formated on creation and contains just an
25
+size. This is automatically formatted on creation and contains just an
26 26
 empty filesystem. This device is the base of all docker images and
27 27
 containers. All base images are snapshots of this device and those
28 28
 images are then in turn used as snapshots for other images and
... ...
@@ -32,7 +32,7 @@ eventually containers.
32 32
 
33 33
 The devicemapper backend supports some options that you can specify
34 34
 when starting the docker daemon using the --storage-opt flags.
35
-This uses the `dm` prefix and would be used somthing like `docker -d --storage-opt dm.foo=bar`.
35
+This uses the `dm` prefix and would be used something like `docker -d --storage-opt dm.foo=bar`.
36 36
 
37 37
 Here is the list of supported options:
38 38
 
... ...
@@ -96,7 +96,7 @@ or
96 96
   If you use the shell form of the CMD, the <command> executes in /bin/sh -c:
97 97
   **FROM ubuntu**
98 98
   **CMD echo "This is a test." | wc -**
99
-  If you run <command> wihtout a shell, then you must express the command as a
99
+  If you run <command> without a shell, then you must express the command as a
100 100
   JSON arry and give the full path to the executable. This array form is the
101 101
   preferred form of CMD. All additional parameters must be individually expressed
102 102
   as strings in the array:
... ...
@@ -338,7 +338,7 @@ fedora-data image:
338 338
 
339 339
 Multiple --volumes-from parameters will bring together multiple data volumes from
340 340
 multiple containers. And it's possible to mount the volumes that came from the
341
-DATA container in yet another container via the fedora-container1 intermidiery
341
+DATA container in yet another container via the fedora-container1 intermediary
342 342
 container, allowing to abstract the actual data source from users of that data:
343 343
 
344 344
     # docker run --volumes-from=fedora-container1 --name=fedora-container2 -i -t fedora bash
... ...
@@ -29,7 +29,7 @@ separated by a ':'
29 29
 
30 30
 **TAG**
31 31
    The tag you are assigning to the image.  Though this is arbitrary it is
32
-recommended to be used for a version to disinguish images with the same name.
32
+recommended to be used for a version to distinguish images with the same name.
33 33
 Note that here TAG is a part of the overall name or "tag".
34 34
 
35 35
 # OPTIONS
... ...
@@ -365,7 +365,7 @@ container, we need to:
365 365
 Please review [*Enumerating Cgroups*](#enumerating-cgroups) to learn how to find
366 366
 the cgroup of a pprocess running in the container of which you want to
367 367
 measure network usage. From there, you can examine the pseudo-file named
368
-`tasks`, which containes the PIDs that are in the
368
+`tasks`, which contains the PIDs that are in the
369 369
 control group (i.e. in the container). Pick any one of them.
370 370
 
371 371
 Putting everything together, if the "short ID" of a container is held in
... ...
@@ -100,7 +100,7 @@ after timestamp.
100 100
 
101 101
 `GET /containers/(id)/logs`
102 102
 
103
-This url is prefered method for getting container logs now.
103
+This url is preferred method for getting container logs now.
104 104
 
105 105
 ## v1.10
106 106
 
... ...
@@ -284,7 +284,7 @@ output is now generated in the client, using the
284 284
 
285 285
 **New!**
286 286
 You can now split stderr from stdout. This is done by
287
-prefixing a header to each transmition. See
287
+prefixing a header to each transmission. See
288 288
 [`POST /containers/(id)/attach`](
289 289
 /reference/api/docker_remote_api_v1.9/#post--containers-(id)-attach "POST /containers/(id)/attach").
290 290
 The WebSocket attach is unchanged. Note that attach calls on the
... ...
@@ -385,7 +385,7 @@ container running Redis:
385 385
     $ docker port 4241164edf6f 6379
386 386
     2014/01/25 00:55:38 Error: No public port '6379' published for 4241164edf6f
387 387
 
388
-Yet we can get information about the Redis container'sexposed ports
388
+Yet we can get information about the Redis container's exposed ports
389 389
 with `--link`. Choose an alias that will form a
390 390
 valid environment variable!
391 391