2017-02-24 07:08:18 +03:00
|
|
|
---
|
2017-05-10 05:36:53 +03:00
|
|
|
- name: Ensure old versions of Docker are not installed.
|
|
|
|
package:
|
2018-10-23 07:32:38 +03:00
|
|
|
name:
|
|
|
|
- docker
|
2023-11-10 18:20:54 +03:00
|
|
|
- docker.io
|
2018-10-23 07:32:38 +03:00
|
|
|
- docker-engine
|
2017-05-10 05:36:53 +03:00
|
|
|
state: absent
|
|
|
|
|
2017-09-19 11:19:58 +03:00
|
|
|
- name: Ensure dependencies are installed.
|
2017-02-24 07:08:18 +03:00
|
|
|
apt:
|
2018-07-23 00:02:44 +03:00
|
|
|
name:
|
|
|
|
- apt-transport-https
|
|
|
|
- ca-certificates
|
2017-02-24 07:08:18 +03:00
|
|
|
state: present
|
2022-12-14 20:25:29 +03:00
|
|
|
when: docker_add_repo | bool
|
2017-02-24 07:08:18 +03:00
|
|
|
|
2021-03-26 12:19:45 +03:00
|
|
|
- name: Ensure additional dependencies are installed (on Ubuntu < 20.04 and any other systems).
|
2021-03-23 09:53:43 +03:00
|
|
|
apt:
|
|
|
|
name: gnupg2
|
|
|
|
state: present
|
|
|
|
when: ansible_distribution != 'Ubuntu' or ansible_distribution_version is version('20.04', '<')
|
|
|
|
|
2021-03-26 12:19:45 +03:00
|
|
|
- name: Ensure additional dependencies are installed (on Ubuntu >= 20.04).
|
2021-03-24 05:26:04 +03:00
|
|
|
apt:
|
|
|
|
name: gnupg
|
|
|
|
state: present
|
2022-06-17 15:08:44 +03:00
|
|
|
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('20.04', '>=')
|
2021-03-24 05:26:04 +03:00
|
|
|
|
2023-11-17 05:59:51 +03:00
|
|
|
- name: Ensure directory exists for /etc/apt/keyrings
|
|
|
|
file:
|
|
|
|
path: /etc/apt/keyrings
|
|
|
|
state: directory
|
|
|
|
mode: '0755'
|
2017-05-24 02:05:34 +03:00
|
|
|
|
2023-11-17 05:59:51 +03:00
|
|
|
- name: Ensure curl is present
|
2017-05-31 01:11:58 +03:00
|
|
|
package: name=curl state=present
|
|
|
|
|
2023-11-17 05:59:51 +03:00
|
|
|
- name: Add Docker apt key
|
2020-02-28 18:30:05 +03:00
|
|
|
shell: >
|
2023-11-17 07:23:52 +03:00
|
|
|
curl -fsSL {{ docker_apt_gpg_key }} | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg --yes
|
2023-11-17 05:59:51 +03:00
|
|
|
|
|
|
|
- name: Change permissions for /etc/apt/keyrings/docker.gpg
|
|
|
|
file:
|
|
|
|
path: /etc/apt/keyrings/docker.gpg
|
|
|
|
mode: 'a+r'
|
2017-02-24 07:08:18 +03:00
|
|
|
|
|
|
|
- name: Add Docker repository.
|
|
|
|
apt_repository:
|
|
|
|
repo: "{{ docker_apt_repository }}"
|
|
|
|
state: present
|
2022-08-09 03:11:52 +03:00
|
|
|
filename: "{{ docker_apt_filename }}"
|
2018-09-27 06:13:32 +03:00
|
|
|
update_cache: true
|
2022-12-14 18:31:46 +03:00
|
|
|
when: docker_add_repo | bool
|