I've found these versions to be usable with RHEL8:
- cffi==1.12.0
- cryptography==3.3.1
- docker-compose==1.28.0
These modules can be installed using pip:
[archy@awx ~]# sudo pip3 install cffi==1.12.0 cryptography==3.3.1 docker-compose==1.28.0
A corresponding ansible snippet could look like this:
- name: install docker-compose if os_major is 8
pip:
name: "{{ item }}"
state: present
loop:
- cffi==1.12.0
- cryptography==3.3.1
- docker-compose==1.28.0
when: ansible_facts['distribution_major_version'] == '8'
tags:
- install_packages
Feel free to comment and / or suggest a topic.
Comments
Post a Comment