This repository has been archived on 2020-08-28. You can view files and clone it, but cannot push or open issues/pull-requests.
ansible-laptop/roles/docker/tasks/packages.yml

22 lines
448 B
YAML

---
- name: install docker dependencies
apt:
name: "apt-transport-https"
state: present
- name: add docker repository key
apt_key:
url: https://download.docker.com/linux/debian/gpg
state: present
- name: add docker repository
apt_repository:
repo: deb https://download.docker.com/linux/debian buster stable
state: present
- name: install docker
apt:
name: "docker-ce"
update_cache: yes
state: present