From adc686474c8d19affd47cf475e3c56e00ab75d10 Mon Sep 17 00:00:00 2001 From: Andy Rothfusz Date: Wed, 23 Oct 2013 19:04:03 -0700 Subject: [PATCH] Add known issues to sections via new "issues" extension. Upstream-commit: 4194617bfe1e29bae2c2515aefbed5f1f2a1ebc1 Component: engine --- components/engine/docs/sources/conf.py | 6 +++++- components/engine/docs/sources/use/builder.rst | 10 ++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/components/engine/docs/sources/conf.py b/components/engine/docs/sources/conf.py index 7aa27c7b84..0ccd4a4ed5 100644 --- a/components/engine/docs/sources/conf.py +++ b/components/engine/docs/sources/conf.py @@ -40,7 +40,11 @@ html_additional_pages = { # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinxcontrib.httpdomain'] +extensions = ['sphinxcontrib.httpdomain', 'sphinx.ext.extlinks'] + +# Configure extlinks +extlinks = { 'issue': ('https://github.com/dotcloud/docker/issues/%s', + 'Issue ') } # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/components/engine/docs/sources/use/builder.rst b/components/engine/docs/sources/use/builder.rst index d1747c3fb3..a1fd85df91 100644 --- a/components/engine/docs/sources/use/builder.rst +++ b/components/engine/docs/sources/use/builder.rst @@ -116,6 +116,16 @@ core concepts of Docker where commits are cheap and containers can be created from any point in an image's history, much like source control. +Known Issues +............ + +* :issue:`783` is about file permissions problems that can occur when + using the AUFS file system. You might notice it during an attempt to + ``rm`` a file, for example. The issue describes a workaround. + + + + 3.4 CMD -------