You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I'm trying to use yours project to run multiple containers in tests (postgis, rabbitmq, eventstoredb).
To optimise execution I would like to run those containers in parallel (rabbitmq is the longest starting one). Is this possible in current version? If there are any plans to add it if no available right now?
The text was updated successfully, but these errors were encountered:
What I mean is it possible to parallel startup of containers. I know it possible to have it run at the same time, but it's not my case.
Example:
I have three containers: postgres, rabbit, eventstore.
Currently startups looks like this:
(rabbit...............X seconds) -> (postgres.......Y seconds) -> (eventstore.....Z seconds) -> so startup time takes X+Y+Z.
What I want is to have startup of this containers in parallel:
(rabbit...............X seconds)
(postgres.......Y seconds)
(eventstore.....Z seconds)
Hi I'm trying to use yours project to run multiple containers in tests (postgis, rabbitmq, eventstoredb).
To optimise execution I would like to run those containers in parallel (rabbitmq is the longest starting one). Is this possible in current version? If there are any plans to add it if no available right now?
The text was updated successfully, but these errors were encountered: