Member-only story
Introduction to Docker in CentOS7 : Let’s run our first Docker container (OWASP Juice shop)
This lab was built on a CentOS 7 system. Please refer the previous article to learn about how to setup docker on CentOS 7 :
Remember…..
Docker images are pre-build docker snapshots made from the Dockerfile (a file with a set of instructions about how the image should be built).
Docker containers are the instances of images (Running instance of the snapshot). We can run N number of containers from a single Docker image……
Docker Hub:
This is a cloud repository where Docker users and partners create, test, store and distribute Docker images.
in simple words, it is a git-hub of docker images :D …..
As in git-hub, we can create a public and private repository in the Docker hub. Docker images published in public repository are available to everyone, while the ones published to the private repository will be available only for authorized users.
https://hub.docker.com/
Lets Start…