22 lines
496 B
Plaintext
22 lines
496 B
Plaintext
{% 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 %}
|