You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi
i did following steps :
$> docker network create bamboo
$> docker run -v bambooVolume:/var/atlassian/application-data/bamboo --name bamboo-server --network bamboo --hostname bamboo-server --init -d -p 8085:8085 atlassian/bamboo-server
$> docker run -v bambooAgentVolume:/home/bamboo/bamboo-agent-home --name bamboo-agent --network bamboo --hostname bamboo-agent --init -d atlassian/bamboo-agent-base http://bamboo-server:8085
then i added the bridge network to the bamboo-server
docker network connect bridge bamboo-server
i did this step to get access to my docker postgres.
After installation with custom postgres-db i navigate into Settings -> Overview -> Agents
But there are no remote agent to run my docker build tasks or any other option to enable remote agents, what did i wrong ?
kind regards
You will need to check the agent logs to really know what is the issue here, but my first guess is that your remote agent is not able to resolve the bamboo-server name.
This is one of the multiple ways to check the agent logs:
docker logs bamboo-agent
If you confirm the error about the name resolution, you will need to add the extra option in your agent container creation.
--link=bamboo-server
Then check the logs again, to make sure you are moving forward.
Please let us know your findings.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.