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)
Recommended Learning For You
Level up your skills with Atlassian learning
Atlassian DevOps Essentials
Learn to manage the product lifecycle by building, automating, and improving processes with Atlassian's approach to DevOps.
Jira Automation
Reduce project complexity and optimize your team's processes through the power of automation.
Bitbucket Pipelines Configuration
Build better software and release more often by learning how to implement a CI/CD solution with Bitbucket Pipelines.