Extending compose files
We have already talked about using environment files to change your application's behavior. Another way that you can do that is to use multiple Docker Compose files. Each file builds on the previous one, extending it and possibly overriding options. This can give you great flexibility in developing your application or adjusting it to fit different environments. This can be done in one of the following two ways:
- The first way is to put your overrides in a file named
docker-compose.override.yml
. This file is read automatically bydocker-compose
. The options indocker-compose.yml
are applied first and then the options indocker-compose.override.yml
are applied. - The second option is to use the
-f
flag todocker-compose
. You may ...
Get Docker Orchestration now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.