📖 DOC:

This commit is contained in:
Yuri Lima
2023-09-07 15:38:56 +01:00
parent 4549d7ccf2
commit 718b4de6b0
4 changed files with 55 additions and 11 deletions

12
install-docker.pb.yml Normal file
View File

@@ -0,0 +1,12 @@
# Path: main/install-docker.pb.yml
---
- hosts: ["devGroup"]
become: yes # Run tasks as root like sudo
tasks:
- name: Install Docker
tags: ["install-docker"]
apt:
name: docker.io
state: present
when: ansible_distribution in ["Ubuntu", "Debian"] and ansible_distribution_version in ["20.04", "22.04"]