docker_compose_v2_build: reference in other docs

This commit is contained in:
Maciej Bogusz 2025-07-09 19:41:06 +02:00
parent c8ff5847a3
commit f9925d770e
3 changed files with 7 additions and 0 deletions

View File

@ -100,6 +100,7 @@ If you use the Ansible package and do not update collections independently, use
- community.docker.docker_volume_info: retrieve information on Docker volumes
* Docker Compose:
- community.docker.docker_compose_v2: manage Docker Compose files (Docker compose CLI plugin)
- community.docker.docker_compose_v2_build: build images for a Docker compose project
- community.docker.docker_compose_v2_exec: run command in a container of a Compose service
- community.docker.docker_compose_v2_pull: pull a Docker compose project
- community.docker.docker_compose_v2_run: run command in a new container of a Compose service

View File

@ -263,6 +263,9 @@ There are several modules for working with Docker Compose projects:
community.docker.docker_compose_v2
The :ansplugin:`community.docker.docker_compose_v2 module <community.docker.docker_compose_v2#module>` allows you to use your existing Docker Compose files to orchestrate containers on a single Docker daemon or on Swarm.
community.docker.docker_compose_v2_build
The :ansplugin:`community.docker.docker_compose_v2_pull module <community.docker.docker_compose_v2_pull#module>` allows you to build images for Docker compose projects.
community.docker.docker_compose_v2_exec
The :ansplugin:`community.docker.docker_compose_v2_exec module <community.docker.docker_compose_v2_exec#module>` allows you to run a command in a container of Docker Compose projects.

View File

@ -174,7 +174,10 @@ author:
- Felix Fontein (@felixfontein)
seealso:
- module: community.docker.docker_compose_v2_build
- module: community.docker.docker_compose_v2_exec
- module: community.docker.docker_compose_v2_pull
- module: community.docker.docker_compose_v2_run
"""
EXAMPLES = r"""