commit bb2ba7fdda5862aaebfc81f3f1504184c11661c4 Author: ace Date: Fri Oct 15 16:36:25 2021 +0300 add docker-ce role diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/defaults/main.yml b/defaults/main.yml new file mode 100644 index 0000000..a00a9cb --- /dev/null +++ b/defaults/main.yml @@ -0,0 +1,2 @@ +--- +docker_version: "20.10.9-3.el{{ansible_distribution_major_version}}" diff --git a/meta/main.yaml b/meta/main.yaml new file mode 100644 index 0000000..e69de29 diff --git a/tasks/centos.yml b/tasks/centos.yml new file mode 100644 index 0000000..f5a269a --- /dev/null +++ b/tasks/centos.yml @@ -0,0 +1,50 @@ +--- + +- name: Add Docker CE Stable repo + yum_repository: + name: "docker-ce-stable" + description: "Docker CE Stable - $basearch" + file: docker-ce + baseurl: "https://download.docker.com/linux/centos/$releasever/$basearch/stable" + enabled: no + gpgcheck: yes + gpgkey: "https://download.docker.com/linux/centos/gpg" + async: yes + + +- name: Ensure docker version {{ docker_version }} installed + yum: + name: "docker-ce-{{ docker_version }}" + state: present + enablerepo: "docker-ce-stable" + +- name: Ensure docker service enabled and started + systemd: + name: docker + enabled: yes + state: started + +- name: Ensure python-docker-py installed + yum: + name: python-docker-py + state: present + enablerepo: extras + when: + - ansible_os_family == 'RedHat' + - ansible_distribution_major_version <= '7' + +- name: Add Epel repo + yum: + name: epel-release + state: present + when: + - ansible_os_family == 'RedHat' + - ansible_distribution_major_version == '8' + +- name: Ensure python3-docker installed + yum: + name: python3-docker + state: present + when: + - ansible_os_family == 'RedHat' + - ansible_distribution_major_version == '8' diff --git a/tasks/main.yml b/tasks/main.yml new file mode 100644 index 0000000..aa69b88 --- /dev/null +++ b/tasks/main.yml @@ -0,0 +1,4 @@ +--- + +- include_tasks: centos.yml + when: ansible_os_family == 'RedHat'