2024-09/12/docker_install.yml

13 lines
200 B
YAML
Raw Normal View History

2024-09-19 13:44:51 +00:00
---
- hosts: localhost
tasks:
- apt:
name: "{{ packages }}"
vars:
packages:
- docker.io
- docker-compose
- python3-docker
become: True