Install instance req for ansible docker tasks

This commit is contained in:
Marty Oehme 2025-07-14 10:01:19 +02:00
parent b54d14c98e
commit d930094638
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -34,10 +34,13 @@
# group: root
# mode: 0600
- name: Install pyyaml # necessary for compose_v2
- name: Install python requirements
ansible.builtin.package:
name: python3-yaml
name: "{{ item }}"
state: present
loop:
- python3-yaml # for docker compose_v2
- python3-requests # for docker network
- name: Start the compose stack
community.docker.docker_compose_v2: