There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "The first file is nginx.conf, which contains a basic nginx configuration file."
A block of code is set as follows:
user nginx;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
Any command-line input or output is written as follows:
$ docker image inspect <IMAGE_ID>
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Upon clicking on Create, you will be taken to a screen similar to the next screenshot."
Warnings or important notes appear like this.
Tips and tricks appear like this.