Silly- Docker assignments

1.What is Docker – in 2 lines Ans: A platform for building, running and shipping applications. 2. What is Container – in 3 lines Ans: A Docker container image is a lightweight, standalone, executable package of software that includes everything needed to run an application: code, runtime, system tools , system libraries and settings. 3. Top 10 commands with 1 example of using docker container docker create –name=container_name image_name-> create Containerdocker start container_name -> start Containerdocker stop container_name -> stop

Read more