Running Docker on Ubuntu 16.4
Docker Quick start on Ubuntu 16.4 - Command Reference - these notes assume you have general Linux experience and assumes you know what docker is.
Update the existing packages
sudo apt updatesudo apt install apt-transport-https ca-certificates curl software-properties-commoncurl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -sudo apt install docker-cesudo systemctl status dockerdocker.service - Docker Application Container Engine
Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: en
Active: active (running) since Mon 2018-08-06 13:23:17 UTC; 10h ago
Docs: https://docs.docker.com
Main PID: 3827 (dockerd)
Tasks: 20
Memory: 141.3M
CPU: 1min 26.849s
CGroup: /system.slice/docker.service
├─3827 /usr/bin/dockerd -H fd://
└─3852 docker-containerd --config /var/run/docker/containerd/containerLast updated