docker/tasks/install.yaml

18 lines
315 B
YAML

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