Add docker_compose_v2 module (#739)

* Add docker_compose_v2 module.

* Add note on compatibility.

* Parse more events.

Emit warnings (or things we assume are warnings), and report unparsable
messages to the user so they can report them to us.
This commit is contained in:
Felix Fontein
2024-01-03 08:05:08 +01:00
committed by GitHub
parent 762ce3e1cf
commit b774837183
26 changed files with 1264 additions and 2 deletions
@@ -0,0 +1,14 @@
---
# Copyright (c) Ansible Project
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
- name: Compose is available in OpenSuSE 15.5, not sure which versions before
set_fact:
docker_has_compose: "{{ ansible_facts.distribution_version is version('15.5', '>=') }}"
- name: Install Docker compose CLI plugin
community.general.zypper:
name: docker-compose
disable_gpg_check: true
when: docker_has_compose