Following are a number of my commonly used docker commands for my own reference
Building
Run the following in the same directory in which your Dockerfile
resides
docker build -t <image-name:<version.
Or you can specify the path to the Dockerfile
docker build . -t <image-name:<version-f /path/to/Dockerfile
Running
Run a container interactively
Especially useful when debugging commands that you will encapsulate in a Docker file, this will enable you to run a base image and then execute → Continue reading “Docker Cheat Sheet”