Files
ansible-automations/roles/docker/tasks/main.yml
Noah Knegt 2f19e6faa5
All checks were successful
continuous-integration/drone/push Build is passing
Split up the docker role definitions into separate files
Signed-off-by: Noah Knegt <git@noahknegt.com>
2023-03-31 11:08:42 +02:00

21 lines
760 B
YAML

# ===================================================================================================
# ? ABOUT
# @author : Noah Knegt
# @email : personal@noahknegt.com
# @repo : https://git.noahknegt.com/noah.knegt/ansible-automations
# @createdOn : 27-03-2023
# @description : This will make sure that docker is installed on the machine.
# ===================================================================================================
---
- include_tasks: check_version.yml
- include_tasks: download.yml
when: docker_update is defined
- include_tasks: install.yml
when: docker_update is defined
- include_tasks: cleanup.yml
when: docker_update is defined