Published on

How to install Docker on Ubuntu Server with ARM Architecture

Authors

Here's how to install Docker on an Ubuntu server, which is on ARM architecture.

Step 1: Installing Docker on Server

sudo apt update

sudo apt-get upgrade

curl -fsSL test.docker.com -o get-docker.sh && sh get-docker.sh

Step 2: Adding to docker group

The following commands add the current user to the docker ground so we can avoid unwanted sudo commands

sudo usermod -aG docker $USER

Running "Hello World"

Make sure to logout and then login to your server via SSH. So you can use docker cli easily.

docker run hello-world 

References

Happy installing docker!