mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-04-03 17:29:09 +00:00
The previous behavior required that dependencies were running beefore starting the dependent service. This made it that services dependent on a one-shot service would not get started and goes against the default docker behavior. Depending on a service to be running will require the implementation of [long syntax depends_on](https://docs.docker.com/reference/compose-file/services/#long-syntax-1) and the condition `service_healthy`. Change-type: patch Closes: #2409