matrix-docker-ansible-deploy/roles/matrix-base/tasks/server_base/setup_debian.yml

44 lines
1.0 KiB
YAML
Raw Normal View History

2019-11-18 18:11:56 +01:00
---
- name: Ensure APT usage dependencies are installed
apt:
name:
- apt-transport-https
- ca-certificates
state: present
update_cache: yes
- name: Ensure Docker's APT key is trusted
apt_key:
url: https://download.docker.com/linux/ubuntu/gpg
id: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88
state: present
register: add_repository_key
ignore_errors: true
2019-11-18 18:20:01 +01:00
when: run_docker_installation|bool
2019-11-18 18:11:56 +01:00
- name: Ensure Docker repository is enabled
apt_repository:
repo: "deb [arch=amd64] https://download.docker.com/linux/{{ ansible_distribution|lower }} {{ ansible_distribution_release }} stable"
state: present
update_cache: yes
2019-11-18 18:20:01 +01:00
when: run_docker_installation|bool
2019-11-18 18:11:56 +01:00
- name: Ensure APT packages are installed
apt:
name:
- bash-completion
- python-docker
- ntp
- fuse
state: latest
update_cache: yes
- name: Ensure docker-ce is installed
apt:
name:
- docker-ce
state: latest
update_cache: yes
2019-11-18 18:20:01 +01:00
when: run_docker_installation|bool