2024-09/12/docker_install.yml
2024-09-19 15:44:51 +02:00

13 lines
200 B
YAML

---
- hosts: localhost
tasks:
- apt:
name: "{{ packages }}"
vars:
packages:
- docker.io
- docker-compose
- python3-docker
become: True