0 votes
in Docker by

Suppose you have an application that has many dependant services. Will docker compose wait for the current container to be ready to move to the running of the next service?

1 Answer

0 votes
by

The answer is yes. Docker compose always runs in the dependency order. These dependencies are specifications like depends_on, links, volumes_from, etc.

...