feat: initial commit
This commit is contained in:
parent
13bdf84b4d
commit
eeaa21f120
18 changed files with 235 additions and 93 deletions
17
tasks/install.yaml
Normal file
17
tasks/install.yaml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
|
||||
# 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue