Install Docker on Ubuntu 16.04
Install Docker on Ubuntu 16.04 Docker Engine is an open-source containerization technology for building and containerizing your applications. Docker Engine acts as a client-server application with: A server with a long-running daemon process dockerd . APIs which specify interfaces that programs can use to talk to and instruct the Docker daemon. A command-line interface (CLI) client docker. To install Docker on your Ubuntu 16.04 machine, follow the following steps. Install Dependent packages: Update the package index and install packages to allow apt to use a repository over HTTPS. sudo apt-get update sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common Add repository key: Add repository key to the package manager curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - Verify fingerprint: Verify that you now have the key with the fingerprint sudo apt-...