run
Docker Build and Run In …
Option 1) docker build -t myapp . && docker run -it myapp Option 2) Preferred docker run -it $(docker build -q .) By using the -q flag Docker will build the image according to our Dockerfile in quiet mode, and only return the hash of the generated Docker image. The hash value is then passed …