Move from localhost to vagrant

This commit is contained in:
2021-05-13 23:47:34 +02:00
parent 5986bdeed8
commit f458dc9229
5 changed files with 45 additions and 4 deletions

View File

@ -0,0 +1,21 @@
- name: install docker and pip
pacman:
name:
- docker
- python-pip
state: present
update_cache: true
- name: start
service:
name: docker
state: started
- name: add user to group
user:
name: lukas
groups: docker
append: true
- name: install python docker
pip:
name:
- docker
state: present