The Docker Bench Security application
In this section, we will cover the Docker Bench Security application that you can install and run. The tool will inspect the following:
- The host configuration
- The Docker daemon configuration files
- Container images and build files
- The container runtime
- The Docker security operations Docker Swarm configuration
Looks familiar? It should, as these are the same items that we reviewed in the previous section, only built into an application that will do a lot of the heavy lifting for you. It will show you what warnings arise within your configurations and will provide information on other configuration items, and even the items that have passed the test.
Now, we will look at how to run the tool, a live example, and what the output of the process means.
Running the tool on Docker for macOS and Docker for Windows
Running the tool is simple. It's already been packaged for us, inside a Docker container. While you...