summaryrefslogtreecommitdiffstats
path: root/opt/infra/roles/docker/tasks/main.yml
blob: 1cf3bea01d362f6ff54d4ee30520ef86ab33aeed (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
39
40
41
- name: adding keys
  become: true
  apt_key: keyserver=hkp://p80.pool.sks-keyservers.net id=0X58118E89F3A912897C070ADBF76221572C52609D

- name: adding entry for ubuntu
  become: true
  apt_repository: repo='deb https://apt.dockerproject.org/repo ubuntu-xenial main' state=present filename='docker'
  when: ansible_distribution == "Ubuntu" and ansible_distribution_version == "16.04"

- name: installing from docker repo
  become: true
  shell: apt-cache policy docker-engine
  when: ansible_distribution == "Ubuntu" and ansible_distribution_version== "16.04"

- name: adding entry for ubuntu
  become: true
  apt_repository: repo='deb https://apt.dockerproject.org/repo ubuntu-trusty main' state=present filename='docker'
  when: ansible_distribution == "Ubuntu" and ansible_distribution_version == "14.04"

- name: updating
  become: true
  apt: update_cache=yes

- name: installing docker engine
  become: true
  apt: name=docker-engine
  notify:
    - starting docker service

- name: install pip
  become: true
  apt: name={{item}} state=installed
  with_items:
    - python-dev
    - python-pip

- name: install docker-py
  become: true
  pip:
    name: docker-py
    version: 1.7.0