Simplest Docker Command

This is the most useful starting point for docker:

docker run -it java:8  /bin/bash

This allows you to look around the docker image. This saved us hours of guesswork when we were trying to find the path to tools in the image.

Leave a comment