Last active
January 8, 2020 18:32
-
-
Save foo4u/bd591b3795afaabf5a77366c09a86712 to your computer and use it in GitHub Desktop.
Building Multi-Architecture Docker Images on ARM 64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install Docker and mult-arch dependencies | |
sudo apt-get install binfmt-support qemu-user-static | |
sudo apt-get install docker.io | |
sudo usermod -aG docker $USER | |
sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment