Skip to content

Commit

Permalink
Adjust docs and tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Dec 14, 2024
1 parent b20ad1c commit 0be7afc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions plugins/modules/docker_compose_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@
- Ignores image building events for change detection.
- If O(state=present) and O(ignore_build_events=true) and O(build=always), a rebuild that does
not trigger a container restart no longer results in RV(ignore:changed=true).
- Note that Docker Compose 2.31.0 is the first Compose 2.x version to emit build events.
For older versions, the behavior is always as if O(ignore_build_events=false).
type: bool
default: false
version_added: 4.2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
- present_2.warnings | default([]) | select('regex', ' Please report this at ') | length == 0
- present_3_check is changed
- present_3_check.warnings | default([]) | select('regex', ' Please report this at ') | length == 0
- present_3 is changed
- ((present_3 is changed) if docker_compose_version is version('2.31.0', '>=') else (present_3 is not changed))
- present_3.warnings | default([]) | select('regex', ' Please report this at ') | length == 0
- present_4_check is changed
- present_4_check.warnings | default([]) | select('regex', ' Please report this at ') | length == 0
Expand Down

0 comments on commit 0be7afc

Please sign in to comment.