docker/tasks/install.yaml
2025-10-03 11:59:26 +02:00

17 lines
292 B
YAML

---
# install docker
- name: "install docker"
ansible.builtin.apt:
name: "{{ item }}"
state: "present"
with_items:
- "docker.io"
- "python3-pip"
- "python3-docker"
# nfs client
- name: "install nfs"
ansible.builtin.apt:
name: "nfs-common"
state: "present"