Development environments are very personal in that every developer and every project has its own specific tools they either require or prefer. Once you get the perfect environment built, you’ll want to be able to make it such that it can be easily repeatable.

Update apt and install Docker Community Edition with: sudo apt-get update sudo apt-get install docker-ce docker-ce-cli containerd.io -y

If you issue the command docker images, you’ll see an image listed with both the Repository and Tag fields listed as

If you need GUI tools for your development environment, your best bet is to use a Virtual Machine tool, like VirtualBox.

Related Articles