40 lines
1.5 KiB
YAML
40 lines
1.5 KiB
YAML
---
|
|
- name: Installing Docker apt repository prerequisites
|
|
apt:
|
|
update_cache: yes
|
|
state: present
|
|
name:
|
|
- apt-transport-https
|
|
- ca-certificates
|
|
- gnupg2
|
|
- software-properties-common
|
|
|
|
- name: Addding Debian Docker apt repository key
|
|
apt_key: url='https://download.docker.com/linux/debian/gpg' state=present
|
|
|
|
- name: Adding Debian 9 Docker apt repository sources
|
|
apt_repository: repo='deb [arch=amd64] https://download.docker.com/linux/debian stretch stable' state=present
|
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "9"
|
|
|
|
- name: Adding Debian 10 Docker apt repository sources
|
|
apt_repository: repo='deb [arch=amd64] https://download.docker.com/linux/debian buster stable' state=present
|
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "10"
|
|
|
|
- name: Adding Debian 11 Docker apt repository sources
|
|
apt_repository: repo='deb [arch=amd64] https://download.docker.com/linux/debian bullseye stable' state=present
|
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "11"
|
|
|
|
- name: Adding Debian 12 Docker apt repository sources
|
|
apt_repository: repo='deb [arch=amd64] https://download.docker.com/linux/debian bookworm stable' state=present
|
|
when: ansible_os_family == "Debian" and ansible_distribution_major_version == "12"
|
|
|
|
- name: Installing Docker
|
|
apt:
|
|
update_cache: yes
|
|
state: present
|
|
name:
|
|
- docker-ce
|
|
- docker-ce-cli
|
|
- containerd.io
|
|
- docker-compose
|