weaveworks / launcher

Weave Cloud Launcher
Apache License 2.0
10 stars 13 forks source link

Change use of docker login #179

Open dholbach opened 6 years ago

dholbach commented 6 years ago

Since this change in docker the use of docker login needs to be changed from

docker login -u $USER -p $PASS to echo $PASS | docker login -u $USER --password-stdin

(Since TravisCI attaches a terminal it will block forever. @stefanprodan brought this up.)