Install Docker open-source on Linux SUSE

To install Docker on Linux SUSE, we need first to add Virtualization repository with Zypper

sudo zypper addrepo https://download.opensuse.org/repositories/Virtualization:containers/openSUSE_Leap_15.0/Virtualization:containers.repo

You have to adapt the repository url to your SUSE version. To find the correct package repository, please follow this link
https://software.opensuse.org/download.html?project=Virtualization%3Acontainers&package=docker

sudo zypper dist-upgrade
sudo zypper update
sudo zypper install docker 

Bonus, if you want to install docker-compose too

zypper install docker-compose

Docker Toolbox and git on Windows

Docker on Windows with boot2docker was a first step, but it’s has few shortcomings (specially with file sharing between guest OS, virtual OS and container).

Furthermore, necessary tools for Docker were to be nstalled by us, and some tools was not compatible with Windows.

Docker Toolbox is new fresh start and give you all-in-one tool with everything that you need in few clic. Docker Toolbox is also available on Mac OS.

docker-toolbox

Continue reading