Move ansible docker module python requirements to docker tasks

This commit is contained in:
Marty Oehme 2025-07-14 17:01:22 +02:00
parent e6b6154043
commit 578f699cb7
Signed by: Marty
GPG key ID: 4E535BC19C61886E
3 changed files with 8 additions and 16 deletions

View file

@ -22,6 +22,14 @@
name: geerlingguy.docker
tags: docker
- name: Install docker python requirements
ansible.builtin.package:
name: "{{ item }}"
state: present
loop:
- python3-yaml # for docker compose_v2
- python3-requests # for docker network
- name: Prepare all docker hosted containers
hosts: instance_system
tasks: