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

35 lines
1.1 KiB
YAML
Raw Normal View History

2020-01-13 12:38:21 +00:00
---
- name: Ensure APT usage dependencies are installed
ansible.builtin.apt:
2020-01-13 12:38:21 +00:00
name:
- apt-transport-https
- ca-certificates
- gnupg
2020-01-13 12:38:21 +00:00
state: present
update_cache: true
2020-01-13 12:38:21 +00:00
- name: Ensure Docker's APT key is trusted
2022-07-18 09:28:39 +00:00
ansible.builtin.apt_key:
2020-01-13 12:38:21 +00:00
url: https://download.docker.com/linux/raspbian/gpg
id: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88
state: present
register: add_repository_key
ignore_errors: true
2022-07-18 08:22:05 +00:00
when: matrix_docker_installation_enabled | bool and matrix_docker_package_name == 'docker-ce'
2020-01-13 12:38:21 +00:00
- name: Ensure Docker repository is enabled
2022-07-18 09:28:39 +00:00
ansible.builtin.apt_repository:
repo: "deb [arch={{ matrix_debian_arch }}] https://download.docker.com/linux/raspbian {{ ansible_distribution_release }} stable"
2020-01-13 12:38:21 +00:00
state: present
update_cache: true
2022-07-18 08:22:05 +00:00
when: matrix_docker_installation_enabled | bool and matrix_docker_package_name == 'docker-ce'
2020-01-13 12:38:21 +00:00
- name: Ensure Docker is installed
ansible.builtin.apt:
2020-01-13 12:38:21 +00:00
name:
- "{{ matrix_docker_package_name }}"
- "python{{ '3' if ansible_python.version.major == 3 else '' }}-docker"
state: present
2022-07-18 08:22:05 +00:00
when: matrix_docker_installation_enabled | bool