2022-01-19 23:18:13 +00:00
|
|
|
---
|
|
|
|
- hosts: leftcoastlab
|
|
|
|
become: yes
|
|
|
|
tasks:
|
|
|
|
- name: Install docker dependencies
|
|
|
|
apt:
|
|
|
|
name: "{{item}}"
|
|
|
|
update_cache: yes
|
|
|
|
loop:
|
|
|
|
- apt-transport-https
|
|
|
|
- ca-certificates
|
|
|
|
- curl
|
|
|
|
- gnupg
|
|
|
|
- software-properties-common
|
|
|
|
- lsb-release
|
|
|
|
|
2022-01-21 22:03:19 +00:00
|
|
|
- name: Install Docker
|
2022-01-19 23:18:13 +00:00
|
|
|
apt:
|
2022-01-21 22:03:19 +00:00
|
|
|
name: docker.io
|
2022-01-19 23:18:13 +00:00
|
|
|
update_cache: yes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|