Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,553,303
Community Members
 
Community Events
184
Community Groups

Bamboo docker task - how to build image

Edited

Hi,

I'm trying to build (and eventually run) a docker image in a task. I'm a bit confused with what needs to be given as the "Repository"? Is this where the image should be taken, or where the output (resulting image) will need to go?

I have a local directory containing my DockerFile, together with the files the it needs (requirements, etc). How can I access this directory? Is this what the subdirectory is meant for, and if so, will it work with the directory path or does this need to be copied into the bamboo root directory?

I'd appreciate any clarifications.

Thanks!

1 answer

0 votes
edwin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Apr 22, 2019

Hi @Din Tamari ,

Repository is the name of the image you are building.

I have a local directory containing my DockerFile, together with the files the it needs (requirements, etc). How can I access this directory?

You'll use source control here.

For example Git.

In your local directory: run the following commands

  1. git init
  2. git add *
  3. git commit -m "Initial commit"

Next step would be to push the commit to a remote repository like Bitbucket, but you can work with a local repository.

In Bamboo

  1. Under Plan Configuration > Repositories
    1. Add your git path repository as URL
      1. /path/to/repo.git 
  2. Now under tasks
    1. Add a Source Code Checkout task
      1. Recommended to use Force Clean Build 
    2. Add Docker build task
      1. Specify a image name
      2. Choose: Use an existing Dockerfile located in the task's working directory

Hi @edwin

thanks for the response! I've followed your steps and have additionally:

 

1. Pushed the repo to github
2. Provided the ssh for accessing the github repo
3. Set up a docker capability for a new agent
--> For this, I created a new Agent with Docker capabilities and set the path to: C:/Program Files/Docker/Docker (I'm on windows).

 

When I try running the plan, I get the following error: Error occurred while running Task 'build docker image(2)' of type com.atlassian.bamboo.plugins.bamboo-docker-plugin:task.docker.cli. 

 

Do you have any idea what the problem could be?

Could it be due to the docker path I am providing? I've also tried setting it to: C:/Program\ Files/Docker/Docker and C:\Progra~1\Docker\Docker 

 

I've also tried using a basic docker example to see if worked, following the task configuration found here: https://jira.atlassian.com/browse/BAM-17729 and I am getting the same error message.

Thanks!

edwin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Apr 22, 2019

@Din Tamari 

Specify a path to the .exe file

C:\Program Files\Docker\docker.exe

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events