Skip to content

Instantly share code, notes, and snippets.

@rishabh-arya95
rishabh-arya95 / workthrough.md
Created October 23, 2021 08:17 — forked from thxCode/workthrough.md
Install Docker armhf on AWS ARM64 host
  1. Allow to install armhf package
    sudo dpkg --add-architecture armhf
  2. Update the apt package index and install packages to allow apt to use a repository over HTTPS:
    sudo apt-get update && sudo apt-get install -y \
        apt-transport-https \
        ca-certificates \
        curl \