ansible-role-docker/tasks/setup-Debian.yml

56 lines
1.4 KiB
YAML
Raw Normal View History

2017-02-24 07:08:18 +03:00
---
- name: Ensure old versions of Docker are not installed.
package:
name:
- docker
2023-11-10 18:20:54 +03:00
- docker.io
- docker-engine
state: absent
2017-09-19 11:19:58 +03:00
- name: Ensure dependencies are installed.
2017-02-24 07:08:18 +03:00
apt:
name:
- apt-transport-https
- ca-certificates
2017-02-24 07:08:18 +03:00
state: present
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).
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
- name: Ensure directory exists for /etc/apt/keyrings
file:
path: /etc/apt/keyrings
state: directory
mode: '0755'
- name: Ensure curl is present
package: name=curl state=present
- name: Add Docker apt key
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
changed_when: false
- 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
filename: "{{ docker_apt_filename }}"
2018-09-27 06:13:32 +03:00
update_cache: true
when: docker_add_repo | bool