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
|
|
|
|
2017-02-24 07:08:18 +03:00
|
|
|
- name: Add Docker apt key.
|
2022-09-06 01:55:21 +03:00
|
|
|
ansible.builtin.get_url:
|
2019-03-19 21:33:20 +03:00
|
|
|
url: "{{ docker_apt_gpg_key }}"
|
2022-09-06 01:55:21 +03:00
|
|
|
dest: /etc/apt/trusted.gpg.d/docker.asc
|
|
|
|
mode: '0644'
|
2023-06-15 17:34:07 +03:00
|
|
|
force: false
|
|
|
|
checksum: "{{ docker_apt_gpg_key_checksum | default(omit) }}"
|
2017-05-24 02:05:34 +03:00
|
|
|
register: add_repository_key
|
2018-02-22 12:55:56 +03:00
|
|
|
ignore_errors: "{{ docker_apt_ignore_key_error }}"
|
2022-12-14 18:31:46 +03:00
|
|
|
when: docker_add_repo | bool
|
2017-05-24 02:05:34 +03:00
|
|
|
|
2017-05-31 01:11:58 +03:00
|
|
|
- name: Ensure curl is present (on older systems without SNI).
|
|
|
|
package: name=curl state=present
|
2022-12-14 18:31:46 +03:00
|
|
|
when: add_repository_key is failed and docker_add_repo | bool
|
2017-05-31 01:11:58 +03:00
|
|
|
|
2017-05-24 03:28:47 +03:00
|
|
|
- name: Add Docker apt key (alternative for older systems without SNI).
|
2020-02-28 18:30:05 +03:00
|
|
|
shell: >
|
2021-10-30 13:53:30 +03:00
|
|
|
curl -sSL {{ docker_apt_gpg_key }} | apt-key add -
|
2022-12-14 18:31:46 +03:00
|
|
|
when: add_repository_key is failed and docker_add_repo | bool
|
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
|