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:
- dockerThe 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)
Recommended Learning For You
Level up your skills with Atlassian learning
Reporting for DevOps
Identify four key DevOps metrics and learn how to use Jira reports to track your team's progress and performance.
Explore Atlassian Cloud products for agile and DevOps
Coordinate a suite of Atlassian Cloud products for greater collaboration and trust, higher-quality solutions, faster releases, and more.
Monitor component health with scorecards in Compass
Learn what scorecards are and their purpose in measuring the health of software components and improving DevOps practices.