Compare commits
No commits in common. "d31f4039cd594a0292d99dab71229279cab88107" and "c60666509f7316139a4c23229aec99744a0d9fe6" have entirely different histories.
d31f4039cd
...
c60666509f
@ -1,20 +0,0 @@
|
|||||||
---
|
|
||||||
|
|
||||||
- name: Ensure prerequisite packages are installed
|
|
||||||
include_tasks: prereqs.yaml
|
|
||||||
|
|
||||||
- name: Install apt repository
|
|
||||||
include_tasks: repo.yaml
|
|
||||||
|
|
||||||
- name: Install the latest docker-ce packages
|
|
||||||
ansible.builtin.apt:
|
|
||||||
name: "{{ item }}"
|
|
||||||
state: latest
|
|
||||||
update_cache: yes
|
|
||||||
with_items:
|
|
||||||
- docker-ce
|
|
||||||
- docker-ce-cli
|
|
||||||
- containerd.io
|
|
||||||
- docker-compose-plugin
|
|
||||||
notify:
|
|
||||||
- Restart Docker daemon
|
|
@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
|
|
||||||
- name: Ensure prerequisite packages are installed
|
|
||||||
ansible.builtin.apt:
|
|
||||||
name: "{{ item }}"
|
|
||||||
state: latest
|
|
||||||
update_cache: yes
|
|
||||||
with_items:
|
|
||||||
- ca-certificates
|
|
||||||
- curl
|
|
||||||
- gnupg
|
|
||||||
- lsb-release
|
|
@ -1,33 +0,0 @@
|
|||||||
---
|
|
||||||
|
|
||||||
- name: Ensure apt keyrings directory exists
|
|
||||||
ansible.builtin.file:
|
|
||||||
path: /etc/apt/keyrings
|
|
||||||
state: directory
|
|
||||||
mode: 0755
|
|
||||||
group: root
|
|
||||||
owner: root
|
|
||||||
|
|
||||||
- name: Download the Docker key
|
|
||||||
ansible.builtin.shell:
|
|
||||||
cmd: curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
|
||||||
creates: /etc/apt/keyrings/docker.gpg
|
|
||||||
args:
|
|
||||||
warn: no
|
|
||||||
register: cmd_output
|
|
||||||
|
|
||||||
#- name: Debug key download
|
|
||||||
# ansible.builtin.debug:
|
|
||||||
# var: cmd_output
|
|
||||||
|
|
||||||
- name: Create the repository file
|
|
||||||
ansible.builtin.shell:
|
|
||||||
cmd: echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
||||||
creates: /etc/apt/sources.list.d/docker.list
|
|
||||||
args:
|
|
||||||
warn: no
|
|
||||||
register: cmd_output
|
|
||||||
|
|
||||||
#- name: Debug repo file
|
|
||||||
# ansible.builtin.debug:
|
|
||||||
# var: cmd_output
|
|
Loading…
x
Reference in New Issue
Block a user