Docker CE Quick Start on Ubuntu 16.10 Yakkety
Hi! The Tutorial shows you Step-by-Step How to Install and Getting-Started with the Latest Docker Community Edition on Ubuntu 16.10 Yakkety Yak 64-bit GNU/Linux Desktop/Server.
Docker is a Command-line Program, a background Daemon, and a set of Remote Services that take a Logistical Approach to Solving common Software Problems and Simplifying your experience Installing, Running, Publishing, and Removing Software.
Getting-Started with Docker on Ubuntu is Easy, it’s enough to Install it and then Use the Docker Engine to Create and Manage Containers.
-
Open a Shell session
Ctrl+Alt+t to open a Terminal emulator on Desktop
(Press “Enter” to Execute Commands) -
Login as SuperUser
The default Docker Administration Requires this Privileges..sudo su
Then to Achieve this Session:
exit
-
Check if a Previous Docker Version is Installed
With:which docker
If Yes then Remove that with:
apt remove docker docker-engine
-
Install PreRequisite Packages.
/napt install apt-transport-https ca-certificates software-properties-common
-
How to Setup the Docker CE Apt Repository
-
Installing Docker CE.
sudo apt install docker-ce
-
Testing Docker Installation.
With:
sudo docker run hello-world
Or:
docker run hello-world
Then Docker will Pull the Repo and Greets you with:
Hello from Docker! :) -
How to Quick Start with Docker and Docker Containers