This is a demo to explain Docker and Docker Compose.
- Docker: https://docs.docker.com/
- Docker Hub: https://hub.docker.com/search?q=
- How to build the docker image?
- ans:
docker build -t demo:v1
- how to check list of the image?
- ans:
docker image ls
- how to run the image?
- ans:
docker run demo:v1