Skip to content

Instantly share code, notes, and snippets.

@nyx-rattapoom
Last active July 27, 2018 09:59
Show Gist options
  • Save nyx-rattapoom/558556bcc29b793b42bf0c945e64ec2e to your computer and use it in GitHub Desktop.
Save nyx-rattapoom/558556bcc29b793b42bf0c945e64ec2e to your computer and use it in GitHub Desktop.
docker multiarch
sudo apt update
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
sudo apt-get update
sudo apt-get install -y docker-ce
sudo usermod -aG docker $USER
sudo systemctl enable docker
sudo apt install -y qemu qemu-user-static qemu-user binfmt-support
docker run --rm --privileged multiarch/qemu-user-static:register --reset
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment