Skip to content

Instantly share code, notes, and snippets.

@MrSuicideParrot
Last active December 22, 2020 18:26
Show Gist options
  • Save MrSuicideParrot/695c210245cb175216e63058668d7f27 to your computer and use it in GitHub Desktop.
Save MrSuicideParrot/695c210245cb175216e63058668d7f27 to your computer and use it in GitHub Desktop.
Installation of docker-ce on kali arm64

Change the iptables

update-alternatives --set iptables /usr/sbin/iptables-legacy
update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy

Install dependecies

apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg2 \
    software-properties-common

Add docker gpg key

curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -

Add repo

echo "deb [arch=arm64] https://download.docker.com/linux/debian buster stable" >> /etc/apt/sources.list.d/docker.list

Update repositories

apt-get update

Install

apt-get install --no-install-recommends docker-ce docker-ce-cli containerd.io
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment