2023-03-30 14:28:10 +02:00
|
|
|
# ===================================================================================================
|
2023-03-27 16:52:42 +02:00
|
|
|
# ? 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.
|
2023-03-30 14:28:10 +02:00
|
|
|
# ===================================================================================================
|
2023-03-27 16:52:42 +02:00
|
|
|
|
|
|
|
|
---
|
2023-03-31 11:08:42 +02:00
|
|
|
- include_tasks: check_version.yml
|
2023-03-27 16:52:42 +02:00
|
|
|
|
2023-03-31 11:08:42 +02:00
|
|
|
- include_tasks: download.yml
|
|
|
|
|
when: docker_update is defined
|
2023-03-27 16:52:42 +02:00
|
|
|
|
2023-03-31 11:08:42 +02:00
|
|
|
- include_tasks: install.yml
|
|
|
|
|
when: docker_update is defined
|
|
|
|
|
|
2023-03-31 11:33:59 +02:00
|
|
|
- include_tasks: addusers.yml
|
|
|
|
|
when: docker_update is defined
|
|
|
|
|
|
2023-03-31 11:08:42 +02:00
|
|
|
- include_tasks: cleanup.yml
|
|
|
|
|
when: docker_update is defined
|
2023-04-06 10:05:50 +02:00
|
|
|
|
|
|
|
|
- include_tasks: buildx.yml
|