ansible-role-docker/tasks/setup-Debian.yml

40 lines
1023 B
YAML
Raw Normal View History

2017-02-24 05:08:18 +01:00
---
- name: Ensure old versions of Docker are not installed.
package:
name: '{{ item }}'
state: absent
with_items:
- docker
- docker-engine
2017-09-19 10:19:58 +02:00
- name: Ensure dependencies are installed.
2017-02-24 05:08:18 +01:00
apt:
name:
- apt-transport-https
- ca-certificates
2017-02-24 05:08:18 +01:00
state: present
- name: Add Docker apt key.
apt_key:
url: https://download.docker.com/linux/ubuntu/gpg
id: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88
2017-02-24 05:08:18 +01:00
state: present
register: add_repository_key
ignore_errors: "{{ docker_apt_ignore_key_error }}"
- name: Ensure curl is present (on older systems without SNI).
package: name=curl state=present
2018-05-11 15:11:11 +02:00
when: add_repository_key is failed
- name: Add Docker apt key (alternative for older systems without SNI).
shell: "curl -sSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -"
args:
warn: no
2018-05-11 15:11:11 +02:00
when: add_repository_key is failed
2017-02-24 05:08:18 +01:00
- name: Add Docker repository.
apt_repository:
repo: "{{ docker_apt_repository }}"
state: present
update_cache: yes