Skip to content

Commit

Permalink
Fix documentation (#684)
Browse files Browse the repository at this point in the history
* Fix documentation.

* Fix line length.
  • Loading branch information
felixfontein authored Sep 10, 2023
1 parent 6f6dd14 commit d266c69
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/modules/docker_compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@
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
Expand All @@ -84,8 +84,8 @@
- 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
Expand Down

0 comments on commit d266c69

Please sign in to comment.