mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-06 08:51:37 +01:00
14 lines
330 B
YAML
14 lines
330 B
YAML
- name: Debian | Add GPG Keys
|
|
apt_key:
|
|
url: "https://download.docker.com/linux/debian/gpg"
|
|
|
|
- name: Debian | Add Repo Source
|
|
apt_repository:
|
|
repo: "deb [arch=amd64] https://download.docker.com/linux/debian bullseye stable"
|
|
update_cache: yes
|
|
|
|
- name: Install docker-ce
|
|
apt:
|
|
name: docker-ce
|
|
state: present
|