Category: CheatSheet
-
Docker CheatSheet
Images Image is a standalone executable package which contains all necessary to run the application. Dockerfile Dockerfile is a “set of rules” to create and run image … to dockerize an app. Example: List local images: docker images Build docker file: docker build -t <name> . Remove image: docker rmi <image_id | image_name > Containers Container is the…