Created
July 1, 2021 14:50
-
-
Save nleiva/4ba8cec8ecbe0e611a4386d1c2c158a0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Install Docker | |
ansible.builtin.package: | |
name: | |
- docker-ce | |
- docker-ce-cli | |
- containerd.io | |
state: present | |
- name: Ensure Docker is started and enabled at boot | |
ansible.builtin.service: | |
name: docker | |
state: started | |
enabled: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment