summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFelix Fontein <felix@fontein.de>2020-01-30 14:08:25 +0100
committerGitHub <noreply@github.com>2020-01-30 14:08:25 +0100
commit5fdc9a61f0ea41cb22c28e7e63a30603579db88c (patch)
tree7a1b7350bde8e8d54fd7adafaba935504e2a13a4 /docs
parent57805b7def8cd1a5f8542d5365b5b7dbbaf446ae (diff)
downloadansible-5fdc9a61f0ea41cb22c28e7e63a30603579db88c.tar.gz
docker_container: pass volumes only for anonymous volumes (#66600)
* Simplify code. * Only pass anonymous volumes. * Add changelog and update porting guide. * Add integration tests.
Diffstat (limited to 'docs')
-rw-r--r--docs/docsite/rst/porting_guides/porting_guide_2.10.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/docsite/rst/porting_guides/porting_guide_2.10.rst b/docs/docsite/rst/porting_guides/porting_guide_2.10.rst
index bc688d86ef..d3ece17b61 100644
--- a/docs/docsite/rst/porting_guides/porting_guide_2.10.rst
+++ b/docs/docsite/rst/porting_guides/porting_guide_2.10.rst
@@ -107,6 +107,7 @@ Noteworthy module changes
* When the directory specified by ``paths`` does not exist or is a file, it will no longer fail and will just warn the user
* Junction points are no longer reported as ``islnk``, use ``isjunction`` to properly report these files. This behaviour matches the :ref:`win_stat <win_stat_module>`
* Directories no longer return a ``size``, this matches the ``stat`` and ``find`` behaviour and has been removed due to the difficulties in correctly reporting the size of a directory
+* :ref:`docker_container <docker_container_module>` no longer passes information on non-anonymous volumes or binds as ``Volumes`` to the Docker daemon. This increases compatibility with the ``docker`` CLI program. Note that if you specify ``volumes: strict`` in ``comparisons``, this could cause existing containers created with docker_container from Ansible 2.9 or earlier to restart.
Plugins
=======