Prerequisites:
- Virtualization is enabled in BIOS
- Docker Toolbox
- Oracle Virtual Box / Hyper-V
- Kitematic
# docker run -d -p 3306:3306 --name=osdb orangescrum/orangescrum-db
# docker run -d -p 80:80 --name=osapp --link=osdb orangescrum/orangescrum-app
yum install epel-release -y
yum install docker –y
systemctl start docker
systemctl status docker
systemctl enable docker
yum install epel-release -y
yum install docker-io -y
service docker start
service docker status
chkconfig docker on
wget https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm
yum install epel-release-7-8.noarch.rpm
dnf install docker -y
systemctl start docker
systemctl enable docker
Finally, run a container test image to verify if Docker works properly, by issuing the following command
docker run hello-world
"Hello from Docker. This message shows that your installation appears to be working correctly"
sudo apt-get update
sudo apt-get install docker.io
sudosystemctl start docker
sudosystemctl enable docker
sudosystemctl status docker
https://docs.docker.com/engine/installation/
Now, open your broswer, Type in your System IP address e.g. http://192.168.1.100