This commit is contained in:
Jochen Friedrich 2021-05-18 16:15:42 +02:00
parent 451c8fee6e
commit 1caa7659ae
9 changed files with 80 additions and 0 deletions

18
tasks/packete.yml Normal file
View file

@ -0,0 +1,18 @@
- name: Chrony installieren
dnf: name=chrony update_cache=no state=latest
- name: repository holen
shell:
"dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo"
- name: repository holen docker
shell:
"dnf install -y docker-ce --nobest"
- name: PIP3 installieren
dnf: name=python3-pip update_cache=no state=latest
- name: docker-python
shell:
"pip3 install docker"