17 lines
292 B
YAML
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"
|