Articles in this series
What is Docker? Docker is an open platform which provides the ability to run an application in a loosely isolated environment called container. Docker enables you to separate your applications from your infrastructure which enables us to manage our i...
Container Lifecyle Commands Create an container without starting itdocker create [image] Rename a containerdocker rename [container_name] [new_container_nme] Create and start a containerdocker run [image] Remove the container when it stopsdocke...