0. How to check caffe version
	caffe --version

1. To run Docker container
	docker run -ti bvlc/caffe:cpu bash	or 	docker run -ti imageName bash

2. Go to caffe root folder
	cd $CAFFE_ROOT

3. Listing of all running Containers
	docker ps -a

4. docker history
	docker history ImageID

5. To delete a container
	docker rm <ContainerID>

6. To delete a image (first delete respective container)
	docker rmi caffeimage:v1	or 	docker rmi imageName

7. kill the processes in a running container.
	docker kill ContainerID

8. List of images downloaded
	docker images

9. Create new image by commit
	a. run the image that you want to commit because only running container can be commited.
	b. commit container with below command
		docker commit <container Id> imageNameforSave

10. How to save image. Once image is saved on disk, it can it loaded to any system installed with Docker software, this is important features.
	docker save caffeimage1 > d:\savenewcaffe1.tar

11. To load save image
	docker load < d:\savenewcaffe1.tar

12 Copy file from host computer to docker container 
	docker cp d:\main.cpp(source) <containerID>72ca2488b353:/opt/caffe(destination)

12 Copy file from docker container to host computer 
	docker cp 72ca2488b353:/opt/caffe/main.cpp d:\main.cpp

13 How do I SSH into a running container
	docker exec -it <container ID> bash

14 Stopping Containers so that you can again run from the state in which you have shut it down
	docker stop <container ID>

15 Running the container from last state that you have left.
	docker start --interactive <contaioner ID>