Docker is one of the most important tools for modern web development, docker used by developers, devops and system administrators. In this short tutorial i will show you how to install docker community edition (CE) on xubuntu 18.04 bionic.
How to install Docker CE on Xubuntu 18.04
- make sure the old docker (docker.io) is uninstalled if previously installed
- run update command
sudo apt-get 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 bionic stable"
sudo apt-get update
sudo apt-get install docker-ce