ubuntu Virtual Environment Installation

Installing Docker on Ubuntu 16.04

This article introduces how to install Docker on Ubuntu 16.04 Linux PC/server.

Shou Arisaka
1 min read
Oct 27, 2025

This article introduces how to install Docker on Ubuntu 16.04 Linux PC/server.

sudo apt-get update
sudo apt-get install -y apt-transport-https ca-certificates
sudo apt-key adv \
               --keyserver hkp://ha.pool.sks-keyservers.net:80 \
               --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
echo "deb https://apt.dockerproject.org/repo ubuntu-xenial main" | sudo tee /etc/apt/sources.list.d/docker.list
sudo apt-get install -y linux-image-extra-$(uname -r) linux-image-extra-virtual
sudo apt-get install -y docker-engine

Reference: http://qiita.com/koara-local/items/ee887bab8c7186d00a88

Share this article

Shou Arisaka Oct 27, 2025

๐Ÿ”— Copy Links