2017-02-24 05:08:18 +01:00
|
|
|
---
|
2017-05-10 04:36:53 +02:00
|
|
|
- name: Ensure old versions of Docker are not installed.
|
|
|
|
package:
|
2018-10-23 06:32:38 +02:00
|
|
|
name:
|
|
|
|
- docker
|
|
|
|
- docker-engine
|
2017-05-10 04:36:53 +02:00
|
|
|
state: absent
|
|
|
|
|
2017-09-19 10:19:58 +02:00
|
|
|
- name: Ensure dependencies are installed.
|
2017-02-24 05:08:18 +01:00
|
|
|
apt:
|
2018-07-22 23:02:44 +02:00
|
|
|
name:
|
|
|
|
- apt-transport-https
|
|
|
|
- ca-certificates
|
2017-02-24 05:08:18 +01:00
|
|
|
state: present
|
|
|
|
|
2021-03-26 10:19:45 +01:00
|
|
|
- name: Ensure additional dependencies are installed (on Ubuntu < 20.04 and any other systems).
|
2021-03-23 07:53:43 +01:00
|
|
|
apt:
|
|
|
|
name: gnupg2
|
|
|
|
state: present
|
|
|
|
when: ansible_distribution != 'Ubuntu' or ansible_distribution_version is version('20.04', '<')
|
|
|
|
|
2021-03-26 10:19:45 +01:00
|
|
|
- name: Ensure additional dependencies are installed (on Ubuntu >= 20.04).
|
2021-03-24 03:26:04 +01:00
|
|
|
apt:
|
|
|
|
name: gnupg
|
|
|
|
state: present
|
|
|
|
when: ansible_distribution == 'Ubuntu' or ansible_distribution_version is version('20.04', '>=')
|
|
|
|
|
2017-02-24 05:08:18 +01:00
|
|
|
- name: Add Docker apt key.
|
|
|
|
apt_key:
|
2019-03-19 19:33:20 +01:00
|
|
|
url: "{{ docker_apt_gpg_key }}"
|
2017-05-10 04:36:53 +02:00
|
|
|
id: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88
|
2017-02-24 05:08:18 +01:00
|
|
|
state: present
|
2017-05-24 01:05:34 +02:00
|
|
|
register: add_repository_key
|
2018-02-22 10:55:56 +01:00
|
|
|
ignore_errors: "{{ docker_apt_ignore_key_error }}"
|
2017-05-24 01:05:34 +02:00
|
|
|
|
2017-05-31 00:11:58 +02:00
|
|
|
- name: Ensure curl is present (on older systems without SNI).
|
|
|
|
package: name=curl state=present
|
2018-05-11 15:11:11 +02:00
|
|
|
when: add_repository_key is failed
|
2017-05-31 00:11:58 +02:00
|
|
|
|
2017-05-24 02:28:47 +02:00
|
|
|
- name: Add Docker apt key (alternative for older systems without SNI).
|
2020-02-28 16:30:05 +01:00
|
|
|
shell: >
|
2020-03-06 17:00:50 +01:00
|
|
|
curl -sSL {{ docker_apt_gpg_key }} | sudo apt-key add -
|
2017-05-24 02:28:47 +02:00
|
|
|
args:
|
2018-09-27 05:13:32 +02:00
|
|
|
warn: false
|
2018-05-11 15:11:11 +02:00
|
|
|
when: add_repository_key is failed
|
2017-02-24 05:08:18 +01:00
|
|
|
|
|
|
|
- name: Add Docker repository.
|
|
|
|
apt_repository:
|
|
|
|
repo: "{{ docker_apt_repository }}"
|
|
|
|
state: present
|
2018-09-27 05:13:32 +02:00
|
|
|
update_cache: true
|