split playbook into roles

This commit is contained in:
Pim Kunis 2022-12-03 13:05:55 +01:00
parent 53bba1751e
commit 62f014d90f
9 changed files with 69 additions and 64 deletions

View file

@ -0,0 +1,30 @@
- name: Install Docker prerequisites
apt:
pkg:
- ca-certificates
- curl
- gnupg
- lsb-release
- python3-pip
state: latest
update_cache: true
- name: Add Docker APT key
apt_key:
url: https://download.docker.com/linux/ubuntu/gpg
- name: Add Docker repository
apt_repository:
repo: "deb https://download.docker.com/linux/ubuntu {{ ansible_distribution_release }} stable"
- name: Install Docker packages
apt:
pkg:
- docker-ce
- docker-ce-cli
- containerd.io
- docker-compose-plugin
state: latest
update_cache: true
- name: Install Docker modules for Python
pip:
name:
- docker
- docker-compose