Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Is there any way to use env variables or anything that can be dynamically configured in repostiory field in docker build task?
e.g. repo/image:{tag}
Yes. It's possible since Bamboo v5.14.4.1. https://jira.atlassian.com/browse/BAM-15861
Yes I saw that issues but it didn't work for me...
The key is I used: ${bamboo_variable} instead of ${bamboo.variable}
It's quite confusing that you have to use `.` instead of `_` especially when you see in logs:
`using extra environment variables .... bamboo_variable`
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can reference Bamboo variables to achieve that, i.e. something like the following should work conceptually:
${bamboo.dockerRepository}/${bamboo.imageName}:${bamboo.buildNumber}
Please note that there used to be a few regressions with this in older Bamboo versions (e.g. BAM-15861 and BAM-18282), but I think the remaining ones have been addressed as of Bamboo 6.1.
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.