We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87a6bb1 commit f2ffc04Copy full SHA for f2ffc04
scripts/ci_upload_packages.sh
@@ -6,8 +6,10 @@ if [[ $TRAVIS_OS_NAME == "linux" ]]; then
6
7
# push docker images to dockerhub
8
echo "$DOCKERHUB_PASS" | docker login -u "$DOCKERHUB_USER" --password-stdin
9
- # if you dont specify the tag, it'll push all image versions
10
- docker push optimizely/agent
+ # if you dont specify the tag, it'll push all image versions --> No longer the default
+ # https://docs.docker.com/engine/release-notes/#20100
11
+ # Add -a/--all-tags to docker push docker/cli#2220
12
+ docker push -a optimizely/agent
13
14
elif [[ $TRAVIS_OS_NAME == "osx" ]]; then
15
echo "we're on osx"
0 commit comments