Skip to content

Instantly share code, notes, and snippets.

@adamotte
Last active August 28, 2018 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamotte/9868db02df0362b76ee80b52ffa96b17 to your computer and use it in GitHub Desktop.
Save adamotte/9868db02df0362b76ee80b52ffa96b17 to your computer and use it in GitHub Desktop.
Docker CE install script for ARM
!#/bin/bash/
# Follow : https://docs.docker.com/install/linux/docker-ce/debian/#install-using-the-repository
# Installation for ARM SOC
apt-get remove docker docker-engine docker.io
apt-get update
apt-get install jq apt-transport-https ca-certificates curl gnupg2 software-properties-common
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
apt-key fingerprint 0EBFCD88
echo "deb [arch=armhf] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list
apt-get update
apt-get install docker-ce
docker run armhf/hello-world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment