Browse code

Add known issues. Fix build warnings.

Andy Rothfusz authored on 2013/11/02 08:06:46
Showing 3 changed files
... ...
@@ -408,6 +408,12 @@ Insert file from github
408 408
 
409 409
 The main process inside the container will be sent SIGKILL.
410 410
 
411
+Known Issues (kill)
412
+~~~~~~~~~~~~~~~~~~~
413
+
414
+* :issue:`197` indicates that ``docker kill`` may leave directories
415
+  behind and make it difficult to remove the container.
416
+
411 417
 .. _cli_login:
412 418
 
413 419
 ``login``
... ...
@@ -516,6 +522,12 @@ The main process inside the container will be sent SIGKILL.
516 516
     Remove one or more containers
517 517
         -link="": Remove the link instead of the actual container
518 518
 
519
+Known Issues (rm)
520
+~~~~~~~~~~~~~~~~~~~
521
+
522
+* :issue:`197` indicates that ``docker kill`` may leave directories
523
+  behind and make it difficult to remove the container.
524
+
519 525
 
520 526
 Examples:
521 527
 ~~~~~~~~~
... ...
@@ -10,13 +10,16 @@ Want to hack on Docker? Awesome!
10 10
 The repository includes `all the instructions you need to get
11 11
 started <https://github.com/dotcloud/docker/blob/master/CONTRIBUTING.md>`_.
12 12
 
13
-The developer environment `Dockerfile <https://github.com/dotcloud/docker/blob/master/Dockerfile>`_
13
+The `developer environment Dockerfile
14
+<https://github.com/dotcloud/docker/blob/master/Dockerfile>`_
14 15
 specifies the tools and versions used to test and build Docker.
15 16
 
16 17
 If you're making changes to the documentation, see the
17 18
 `README.md <https://github.com/dotcloud/docker/blob/master/docs/README.md>`_.
18 19
 
19
-The documentation environment `Dockerfile <https://github.com/dotcloud/docker/blob/master/docs/Dockerfile>`_
20
+The `documentation environment Dockerfile
21
+<https://github.com/dotcloud/docker/blob/master/docs/Dockerfile>`_
20 22
 specifies the tools and versions used to build the Documentation.
21 23
 
22
-Further interesting details can be found in the `Packaging hints <https://github.com/dotcloud/docker/blob/master/hack/PACKAGERS.md>`_.
24
+Further interesting details can be found in the `Packaging hints
25
+<https://github.com/dotcloud/docker/blob/master/hack/PACKAGERS.md>`_.
... ...
@@ -116,13 +116,13 @@ core concepts of Docker where commits are cheap and containers can be
116 116
 created from any point in an image's history, much like source
117 117
 control.
118 118
 
119
-Known Issues
120
-............
119
+Known Issues (RUN)
120
+..................
121 121
 
122 122
 * :issue:`783` is about file permissions problems that can occur when
123 123
   using the AUFS file system. You might notice it during an attempt to
124 124
   ``rm`` a file, for example. The issue describes a workaround.
125
-
125
+* :issue:`2424` Locale will not be set automatically.
126 126
 
127 127
 
128 128