summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fontein <felix@fontein.de>2019-09-30 21:06:12 +0200
committerAlicia Cozine <879121+acozine@users.noreply.github.com>2019-09-30 15:06:12 -0400
commit042143177cce3abff5017dca86c3ecc14f89a112 (patch)
treed9393cb1f6480e7f25504cfe24c308f4f271c65d
parent56054beac8b41ea47e6eddad492cfbc9fd8d8721 (diff)
downloadansible-042143177cce3abff5017dca86c3ecc14f89a112.tar.gz
docker_container: document some of the unexpected behaviors. (#62325) (#62944)
(cherry picked from commit fd627e3b7876b43f2999cb90349c398f26b92fa3)
-rw-r--r--lib/ansible/modules/cloud/docker/docker_container.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/ansible/modules/cloud/docker/docker_container.py b/lib/ansible/modules/cloud/docker/docker_container.py
index 6574b9f09d..9f2ac3879c 100644
--- a/lib/ansible/modules/cloud/docker/docker_container.py
+++ b/lib/ansible/modules/cloud/docker/docker_container.py
@@ -20,10 +20,21 @@ short_description: manage docker containers
description:
- Manage the life cycle of docker containers.
- - Supports check mode. Run with --check and --diff to view config difference and list of actions to be taken.
+ - Supports check mode. Run with C(--check) and C(--diff) to view config difference and list of actions to be taken.
version_added: "2.1"
+notes:
+ - For most config changes, the container needs to be recreated, i.e. the existing container has to be destroyed and
+ a new one created. This can cause unexpected data loss and downtime. You can use the I(comparisons) option to
+ prevent this.
+ - If the module needs to recreate the container, it will only use the options provided to the module to create the
+ new container (except I(image)). Therefore, always specify *all* options relevant to the container.
+ - When I(restart) is set to C(true), the module will only restart the container if no config changes are detected.
+ Please note that several options have default values; if the container to be restarted uses different values for
+ these options, it will be recreated instead. The options with default values which can cause this are I(auto_remove),
+ I(detach), I(init), I(interactive), I(memory), I(paused), I(privileged), I(read_only) and I(tty).
+
options:
auto_remove:
description: