7c8b046b5f
* Copy in incidental posix tests. * Update incidental test aliases. * Update target names. * Add support plugins. * Fix paths. * Update ignores. * Update integration-aliases sanity test. * Add incidental tests to CI.
21 lines
517 B
YAML
21 lines
517 B
YAML
- name: Add repository
|
|
yum_repository:
|
|
file: docker-ce
|
|
name: docker-ce-stable
|
|
description: Docker CE Stable - $basearch
|
|
baseurl: https://download.docker.com/linux/fedora/$releasever/$basearch/stable
|
|
enabled: yes
|
|
gpgcheck: yes
|
|
gpgkey: https://download.docker.com/linux/fedora/gpg
|
|
|
|
- name: Update cache
|
|
command: dnf makecache
|
|
args:
|
|
warn: no
|
|
|
|
- name: Install docker
|
|
dnf:
|
|
name: "{{ docker_packages }}"
|
|
state: present
|
|
enablerepo: docker-ce-test
|
|
notify: cleanup docker
|