Skip to content

Commit 3db40b7

Browse files
committed
Flag "-e" is not supported in the "docker login" command anymore.
1 parent ebea6dc commit 3db40b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ script:
1818
# only push up tags
1919
after_success:
2020
- if [ "$TRAVIS_TAG" != "" ]; then
21-
docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
21+
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
2222
VERSION="$TRAVIS_TAG" make release;
2323
fi
2424
- if [[ "$TRAVIS_TAG" == "$LATEST"* ]]; then
25-
docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
25+
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
2626
VERSION="$TRAVIS_TAG" make tag_latest;
2727
VERSION="latest" make release_latest;
2828
fi

0 commit comments

Comments
 (0)