OpenSUSE 13: Install docker-engine


Table of Contents

1 Install docker-engine

The following script will install docker-engine.

#!/bin/shTMP=`mktemp -t docker-engine.sh.XXXXXX`trap “rm $TMP* 2>/dev/null” 0sudo zypper -n in curlcurl -s -o ${TMP}sudo rpm –import ${TMP}sudo zypper ar -f docker-mainsudo zypper -n refsudo zypper -n in docker-enginesudo systemctl start dockersudo systemctl enable dockersudo gpasswd -a hiroom2 dockersudo reboot

2 Execution result

Run hello-world.

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

Android | Linux | SDL - Narrow Escape