Glossary

startup order

it ensures that the `db` service container is started before the `backend` service container. However, it does **NOT** guarantee that the database is **ready to accept connections** when the backend starts. The PostgreSQL container might be started but still initializing its database files.

Learn More

Related Terms