37 lines
1 KiB
YAML
37 lines
1 KiB
YAML
|
---
|
||
|
- name: set mydistribution
|
||
|
ansible.builtin.set_fact:
|
||
|
mydistribution: "{{ 'rhel' if (ansible_distribution == 'Red Hat Enterprise Linux') else (ansible_distribution | lower) }}"
|
||
|
|
||
|
- name: Add signing key
|
||
|
ansible.builtin.rpm_key:
|
||
|
key: "https://download.docker.com/linux/{{ mydistribution }}/gpg"
|
||
|
state: present
|
||
|
|
||
|
- name: Add repository into repo.d list
|
||
|
ansible.builtin.yum_repository:
|
||
|
name: docker
|
||
|
description: docker repository
|
||
|
baseurl: "https://download.docker.com/linux/{{ mydistribution }}/$releasever/$basearch/stable"
|
||
|
enabled: true
|
||
|
gpgcheck: true
|
||
|
gpgkey: "https://download.docker.com/linux/{{ mydistribution }}/gpg"
|
||
|
|
||
|
- name: Install Docker
|
||
|
ansible.builtin.yum:
|
||
|
name:
|
||
|
- docker-ce
|
||
|
- docker-ce-cli
|
||
|
- containerd.io
|
||
|
- docker-buildx-plugin
|
||
|
- docker-compose-plugin
|
||
|
state: latest
|
||
|
update_cache: true
|
||
|
|
||
|
- name: Start Docker
|
||
|
ansible.builtin.service:
|
||
|
name: "docker"
|
||
|
enabled: true
|
||
|
state: started
|
||
|
ignore_errors: true # TODO: Remove it (Not work in docker container)
|