You are on page 1of 1

Docker Notes

Ubuntu Server Installed.

#lsb_release -a

No LSB modules are available.


Distributor ID: Ubuntu
Description: Ubuntu 17.04
Release: 17.04
Codename: zesty

User Created.

Docker installation.

#apt-get update
#apt-get install -y wget (Already there) [dpkg -l wget]
#wget -qO- https://get.docker.com/ | sh

Docker Version Check

#docker --version
#docker info

Adding Automation User to Docker Group

#usermod -aG docker automation or gpasswd -a automation docker

#cat /etc/group | grep docker

Docker Installation Complete!!!

Making of Apache Container

You might also like