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
FYI @mdkhaledibnhassan followed up on their Toradex Community thread [1]
the issue was not fixed and I found the cause of the issue. I think I fixed it in correct way. In current code there is no way to provide password when it will run in gitlab CI/CD. We have to store it in gitlab variables as mentioned in Toradex guideline but later did not update that line to use that variable.
Default code assumes that user will enter password in console which is not true for CI/CD. Nobody can’t input.
Hi In Torizon below command does not work in createDockerComposeProduction.ps1 file during CI/CD in gitlab
Write-Output "$psswd" | docker login $registry -u $dockerLogin --password-stdin
I have to use
docker login -u $dockerLogin -p "$env:DOCKER_PSSWD" $registry
The text was updated successfully, but these errors were encountered: