Déplacement

This commit is contained in:
CLEMENT Iwan
2018-11-11 20:32:55 +01:00
parent 80dcc15ea9
commit 64cb3c7e3b
8 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
{% if grains['kernel'] == 'Linux' %}
{% if grains['os'] == 'CentOS' %}
CentOS Docker PreRequisites:
pkg.installed:
- pkgs:
- yum-utils
- device-mapper-persistent-data
- lvm2
CentOS Docker Add Repo:
cmd.run:
- name: yum-config-manager -y --add-repo 'https://download.docker.com/linux/centos/docker-ce.repo'
CentOS Docker CE installation:
pkg.installed:
- pkgs:
- docker-ce
- docker-compose
{% endif %}
{% endif %}