After switching to a new dedicated server for my GitLab runner, pushing to containers never completes and just has an endless stream of messages like:
bbdcc09b9436: Waiting
856be9b83b46: Waiting
454b1f880d9e: Waiting
fd674058ff8f: Waiting
bbdcc09b9436: Waiting
61ccb076d3e2: Waiting
4416e5d0ee0a: Waiting
22a0038f868f: Waiting
What’s weird is this only happens on two of my projects, my third project works fine on this new server. My build script is exactly the same and worked fine on my old runner, using the CI variables for docker login
docker login $Env:CI_REGISTRY -u $Env:CI_REGISTRY_USER -p $Env:CI_REGISTRY_PASSWORD
I’ve also tried switching the login to using a deploy token with read/write registry access to see if it was an issue with the automatic registry login, but that didn’t work either.
Any ideas how to fix this?