July 2018
Intermediate to advanced
504 pages
11h 34m
English
Environment variables adjust settings for a single container. The same approach can be used to start a multi-tier application where one container or application works alongside the other:

In a multi-tier application, both the application server container and database server container may need to share variables such as database login credentials. Of course, we can pass all database connectivity settings to the application container using environment variables. It is very easy to make a mistake while passing multiple -e options to the docker run command, and it is very time-consuming, not to ...