-
Notifications
You must be signed in to change notification settings - Fork 11
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
Docker compose support #8
Comments
Hmm |
Ok, maybe I was a litle misunderstable. I try to explain it with an example: How can I set it in a |
Can you link me to the repo? Docker compose is for running applications. Dockunit is for testing applications. |
It is just an imaginary example. Our system is way more complex and it is on private repo, but it doesn't matter ... In travis, if I want a database, I can set a service: http://docs.travis-ci.com/user/database-setup/ In |
Each docker container is intended to be fully self supporting. Your docker container would contain your DB service and your web server. |
@ruimarinho can you give me an example repo? |
@tlovett1 "Each docker container is intended to be fully self supporting." I think assuming this limits the usefulness of the dockunit design. Many organizations use one-container-per-service (these containers may be maintained by different teams) and in a complex environment with multiple in-house services you may need to initialize several containers via something like docker-compose before you can test the container of the app in question. |
We have a big project with multiple containers what is connected by Docker Compose.
Is there any possibility to use multiple containers for one test or Docker Compose? Because we don't want to create an all-in-one container.
The text was updated successfully, but these errors were encountered: