Déplacement
This commit is contained in:
26
Archives/dockerCE-Debian.sls
Normal file
26
Archives/dockerCE-Debian.sls
Normal file
@@ -0,0 +1,26 @@
|
||||
{% if grains['kernel'] == 'Linux' %}
|
||||
{% if grains['os'] == 'Debian' %}
|
||||
Debian Docker PreRequisites:
|
||||
pkg.installed:
|
||||
- pkgs:
|
||||
- apt-transport-https
|
||||
- ca-certificates
|
||||
- curl
|
||||
- gnupg2
|
||||
|
||||
{% set DEBVER = salt['grains.get']('oscodename') %}
|
||||
Debian Docker Add Repo:
|
||||
pkgrepo.managed:
|
||||
- name: deb [arch=amd64] https://download.docker.com/linux/debian {{DEBVER}} stable
|
||||
- file: /etc/apt/sources.list.d/docker-ce.list
|
||||
- enable: 1
|
||||
- key_url: https://download.docker.com/linux/debian/gpg
|
||||
|
||||
Debian Docker CE installation:
|
||||
pkg.installed:
|
||||
- pkgs:
|
||||
- docker-ce
|
||||
- docker-compose
|
||||
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user