-
Notifications
You must be signed in to change notification settings - Fork 41.2k
Add property to specify Docker Compose startup and shutdown flags #38763
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Similarly, there's no way (at least not that I see) to specify options for Docker Compose "down". For example, when I have a Docker Compose file that stands up a Chroma database in Docker, it also creates a volume. But when the app stops, only the container goes away, not the volume. |
#41086 is requesting the ability to set |
Hi @wilkinsona, can I work on this issue? |
Thanks for the offer, @osopromadze, but we're not ready to start work on this one, hence the |
These new properties take a List<String>: - spring.docker.compose.start.arguments - spring.docker.compose.stop.arguments Closes spring-projectsgh-38763
Changes are here and ready to be merged as soon as we have the |
Uh oh!
There was an error while loading. Please reload this page.
@dsyer ran into an issue where a Postgres update prevented the start of the Postgres container used for integration tests. Adding a
--force-recreate --renew-anon-volumes
would fix that, but as of now, there's no possibility to add additional flags to thedocker compose up
call.The text was updated successfully, but these errors were encountered: