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.
Logging in to my docker registry from the pipeline started to fail recently with an timeout.
I'd like to debug this issue locally but do not know how to include the docker service in my docker image.
Relevant part of my bitbucket pipelines i want to debug:
image: python:3.6.2
definitions:
steps:
- step: &branchBuild
name: Building Image
caches: - docker
script:
- echo $DOCKER_KEY | docker login -u pipeline --password-stdin XXXX
- docker build --no-cache -t docker-XXXX/monitor:$BITBUCKET_BRANCH .
- docker push docker-XXXX/monitor:$BITBUCKET_BRANCH
services:
- docker
The error I get:
Error response from daemon: Get https://xxx/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)