summaryrefslogtreecommitdiff
path: root/test/integration/targets/setup_docker/tasks/RedHat-7.yml
blob: c7b512e8e1f9d2e294526f8a97600c9888534599 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# The RHEL extras repository must be enabled to provide the container-selinux package.
# See: https://docs.docker.com/engine/installation/linux/docker-ee/rhel/#install-using-the-repository

- name: Install Docker pre-reqs
  yum:
    name: "{{ docker_prereq_packages }}"
    state: present
  notify: cleanup docker

- name: Install epel repo which is missing on rhel-7 and is needed for pigz (needed for docker-ce 18)
  include_role:
    name: setup_epel

# They broke their .repo file, so we set it up ourselves
- name: Set-up repository
  yum_repository:
    name: docker-ce
    description: docker-ce
    baseurl: https://download.docker.com/linux/centos/{{ ansible_facts.distribution_major_version }}/$basearch/stable
    gpgcheck: true
    gpgkey: https://download.docker.com/linux/centos/gpg

- name: Update cache
  command: yum -y makecache fast
  args:
    warn: no

- name: Install docker
  yum:
    name: "{{ docker_packages }}"
    state: present
  notify: cleanup docker

- name: Make sure the docker daemon is running (failure expected inside docker container)
  service:
    name: docker
    state: started
  ignore_errors: "{{ ansible_virtualization_type == 'docker' }}"