OpenSUSE Leap 15: Install Docker for container

This article will describe installing Docker. Please see here for usage of Docker.

1 Install Docker

The following script will install Docker.

#!/bin/sh

sudo zypper -n in docker
sudo systemctl start docker
sudo systemctl enable docker
sudo gpasswd -a "${USER}" docker
sudo reboot

2 Execution result

Run hello-world.

$ docker run hello-world
<snip>
Hello from Docker!
<snip>