You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running docker login -u <username> -p <password> will throw the following error:
Error: Cannot perform an interactive login from a non TTY device
I can use --password-stdin like: echo "bar" | docker login --username foo --password-stdin
to get around this, but mainly pointing out that glci does not handle this the same way as GitLabs CI Runner would (at least not the Kubernetes ones).
The text was updated successfully, but these errors were encountered:
Can you copy/paste the .gitlab-ci.yml declaration of the problematic job, or even the whole file is this is ok for you ? I just tried a login using using -u -p on the official docker:latest image and this seems to work.
Running
docker login -u <username> -p <password>
will throw the following error:I can use
--password-stdin
like:echo "bar" | docker login --username foo --password-stdin
to get around this, but mainly pointing out that
glci
does not handle this the same way as GitLabs CI Runner would (at least not the Kubernetes ones).The text was updated successfully, but these errors were encountered: