From d266c69ddcc22037e552d6ae43f48a0a4c35776b Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sun, 10 Sep 2023 21:27:26 +0200 Subject: [PATCH] Fix documentation (#684) * Fix documentation. * Fix line length. --- plugins/modules/docker_compose.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/modules/docker_compose.py b/plugins/modules/docker_compose.py index d5413ba7..a68732c0 100644 --- a/plugins/modules/docker_compose.py +++ b/plugins/modules/docker_compose.py @@ -74,8 +74,8 @@ options: state: description: - Desired state of the project. - - Specifying V(present) is the same as running C(docker-compose up) resp. C(docker-compose stop) (with V(stopped)) resp. C(docker-compose restart) - (with V(restarted)). + - Specifying V(present) is the same as running C(docker-compose up) resp. C(docker-compose stop) (with O(stopped=true)) resp. C(docker-compose restart) + (with O(restarted=true)). - Specifying V(absent) is the same as running C(docker-compose down). type: str default: present @@ -84,8 +84,8 @@ options: - present services: description: - - When O(state) is V(present) run C(docker-compose up) resp. C(docker-compose stop) (with V(stopped)) resp. C(docker-compose restart) (with V(restarted)) - on a subset of services. + - When O(state) is V(present) run C(docker-compose up) resp. C(docker-compose stop) (with O(stopped=true)) resp. + C(docker-compose restart) (with O(restarted=true)) on a subset of services. - If empty, which is the default, the operation will be performed on all services defined in the Compose file (or inline O(definition)). type: list elements: str