1
0
Fork 0
myserver-configuration/roles/docker/tasks/install.yml

35 lines
986 B
YAML
Raw Normal View History

2023-05-03 14:01:41 +02:00
---
- 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
2023-05-03 21:30:58 +02:00
state: started