travis: remove deprecated docker login -e flag (#3651)
This commit is contained in:
parent
0cae9b236b
commit
9bd2224520
|
@ -15,6 +15,6 @@ docker build --pull --no-cache --rm -t=${BASENAME} -f ${DOCKERFILE} .
|
||||||
# the login+push step when the variable isn’t set.
|
# the login+push step when the variable isn’t set.
|
||||||
if [ -n "${DOCKER_PASS}" ]
|
if [ -n "${DOCKER_PASS}" ]
|
||||||
then
|
then
|
||||||
docker login -e ${DOCKER_EMAIL} -u ${DOCKER_USER} -p ${DOCKER_PASS}
|
docker login -u ${DOCKER_USER} -p ${DOCKER_PASS}
|
||||||
docker push ${BASENAME}
|
docker push ${BASENAME}
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue