Begin remove backup from docker + Debian support

This commit is contained in:
Florian RICHER 2023-06-08 23:51:39 +02:00
parent e026113bb7
commit 7fe8837098
31 changed files with 82 additions and 565 deletions

View file

@ -0,0 +1,28 @@
---
- name: Add signing key
ansible.builtin.rpm_key:
key: "https://download.docker.com/linux/{{ mydistribution }}/gpg"
state: present
- name: Add repository into repo.d list
ansible.builtin.yum_repository:
name: docker
description: docker repository
baseurl: "https://download.docker.com/linux/{{ mydistribution }}/$releasever/$basearch/stable"
enabled: true
gpgcheck: true
gpgkey: "https://download.docker.com/linux/{{ mydistribution }}/gpg"
- name: Install Docker
ansible.builtin.yum:
name:
- docker-ce
- docker-ce-cli
- containerd.io
- docker-buildx-plugin
- docker-compose-plugin
- docker-compose
- python-docker
state: latest
update_cache: true