Skip to content

Instantly share code, notes, and snippets.

View nicolabeghin's full-sized avatar

Nicola Beghin nicolabeghin

View GitHub Profile
@nicolabeghin
nicolabeghin / docker.yml
Created March 30, 2021 18:28
Ansible to install docker and docker-compose on AWS Graviton t4a ARM64 instances
---
- name: Docker install
hosts: all
become: yes
tasks:
- name: Install docker-ce (centos) via amazon-linux-extras packages
shell: "amazon-linux-extras install docker -y"
- name: Install dependencies
yum: