Files
ansible-automations/roles/docker/tasks/download.yml

16 lines
650 B
YAML
Raw Normal View History

# ===================================================================================================
# ? ABOUT
# @author : Noah Knegt
# @email : personal@noahknegt.com
# @repo : https://git.noahknegt.com/noah.knegt/ansible-automations
# @createdOn : 31-03-2023
# @description : This will download the docker install script.
# ===================================================================================================
---
- name: Download the docker install script
get_url:
url: https://get.docker.com
dest: /tmp/get-docker.sh
mode: 0755