Compare commits

..

No commits in common. "64fa63824409721862f5e664024283f4fe7e6164" and "a82a70ce535f0a87354ddca21a80d8dec1a27073" have entirely different histories.

2 changed files with 10 additions and 13 deletions

View file

@ -1,3 +0,0 @@
---
skip_list:
- fqcn-builtins

View file

@ -1,5 +1,5 @@
- name: Ensure packages are installed
become: true
become: yes
apt:
name:
- python3-pip
@ -11,15 +11,15 @@
state: present
- name: Trust dockers GPG key
become: true
become: yes
apt_key:
url: https://download.docker.com/linux/debian/gpg
state: present
- name: Ensure docker repository is available
become: true
become: yes
apt_repository:
repo: deb https://download.docker.com/linux/debian {{ ansible_distribution_release }} stable
repo: deb https://download.docker.com/linux/debian buster stable
state: present
# notify: Update apt cache
@ -27,25 +27,25 @@
# meta: flush_handlers
- name: Ensure packages are installed
become: true
become: yes
apt:
name:
- docker-ce
- docker-ce-cli
- containerd.io
- docker-compose
update_cache: true
update_cache: yes
state: present
- name: Install docker python module
become: true
become: yes
pip:
executable: pip3
name:
- docker
- name: Change docker root
become: true
become: yes
template:
src: templates/daemon.json.j2
dest: /etc/docker/daemon.json