This article will describe installing Docker. Please see here for usage of Docker.
Table of Contents
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>