Hello,
I've been testing the new Docker runner feature for the past couple hours and it's been working great! There is one thing though that I can't seem to figure out how to do. I'd like to be able to run say a Database Docker container alongside the build. This is a pretty typical case for builds to run external services alongside them (e.g. Bitbucket pipelines services feature).
Is it possible to configure multiple containers to run alongside your docker runner build?
Thank you,
- Mark
Hi @Mark Kewley if your are familired with docker you can use docker compose for orchestate the containers.
Cheers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mark,
It would be easiest to accomplish this by setting up pre-tasks to your build/plan. You could build your database and attach your schema in build steps before, and then have your docker runner tasks execute after that dependency is met, however you would need to cleanup the container in another step later.
Cheers,
Max
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not sure if I see this pre-task tab, do you mean using stages? Is it possible configuring this all through the YAML bamboo-specs configuration as code?
A quick search in the docs does not mention pre-tasks.
Thanks,
Mark
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
to my mind Max points to the feature of this plugin: pre-post-build-command-runner.
I will give it a try - even if its an v1 plugin :(.
cheers
Alex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Alexander Sowatsch,
Our company has since moved away from Bamboo and we are now using Gitlab. So much better.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That actually doesn't solve the issue with Docker Runners, the only thing we are allowed to do via the UI is to place an image as our build container. We aren't given an option to say place a docker-compose.yml file.
What we need is something like bitbucket-pipelines, where you can have your base image the agent runs on and then you can attach services (other docker images) that run alongside the build that can be called upon.
Does such a feature exist?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.