Learning the Basics of Docker ################# Docker Installation ################# [mohammedrafi@docker ~]$ sudo yum update -y [mohammedrafi@docker ~]$ uname -a Linux docker 3.10.0-514.16.1.el7.x86_64 #1 SMP Wed Apr 12 15:04:24 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux [mohammedrafi@docker ~]$ cat /etc/redhat-release CentOS Linux release 7.3.1611 (Core) [mohammedrafi@docker … Continue reading latest docker version on centos-7
Month: May 2017
Creating Docker images
Some important docker commands to revise docker pull nginx docker images docker stop myweb docker ps -a docker ps docker inspect myweb docker exec -it myweb /bin/bash docker inspect myweb |grep -i ipaddress docker run -d --name=myweb1 -P nginx docker port myweb1 $CONTAINERPORT docker run --name=myweb nginx docker run -d nginx docker run -d -p … Continue reading Creating Docker images
