buildkite-plugins / docker-compose-buildkite-plugin

🐳⚡️ Run build scripts, and build + push images, w/ Docker Compose
MIT License
172 stars 139 forks source link

Avoid pre-running dependencies #366

Closed toote closed 1 year ago

toote commented 1 year ago

Up to now you either started dependencies before the main run container or did not use dependencies whatsoever (skipping that and passing --no-deps to the service being run).

This allows for dependencies to be used, but not started before the main service being run. While there are some utilities for this it has the main drawback of mixing up outputs and making them more complicated to follow.

Closes #365