2024-11/12/docker_install.yml

13 lines
200 B
YAML
Raw Permalink Normal View History

2024-11-29 13:16:39 +00:00
---
- hosts: localhost
tasks:
- apt:
name: "{{ packages }}"
vars:
packages:
- docker.io
- docker-compose
- python3-docker
become: True