[ansible][fedora] Update package name
[barometer.git] / docker / ansible / roles / install_docker / tasks / fedora.yml
1 #Copyright 2019 Red Hat
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 ---
15
16 - name: Set Python interpreter
17   set_fact: ansible_python_interpreter=/usr/bin/python3
18
19 - name: install dependencies for docker
20   package:
21      name: "{{ packages }}"
22      state: present
23   vars:
24      packages:
25         - python3-dnf
26         - python3
27         - python3-libselinux
28
29 - name: set up docker repository
30   command: "dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo && dnf makecache"
31
32 - name: install docker-py
33   package:
34      name: python3-docker
35      state: present
36
37 - name: install docker
38   package:
39      name: docker-ce
40      state: present
41
42 - name: start docker daemon
43   systemd:
44      name: docker
45      daemon_reload: true
46      state: started
47      enabled: true