aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/docker_deploy.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/docker_deploy.sh')
-rwxr-xr-xscripts/docker_deploy.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/docker_deploy.sh b/scripts/docker_deploy.sh
index 00705725..c8a3c28e 100755
--- a/scripts/docker_deploy.sh
+++ b/scripts/docker_deploy.sh
@@ -6,16 +6,16 @@ docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
version=$($(dirname "$0")/get_version.sh)
if [ "$TRAVIS_BRANCH" = "develop" ]
then
- docker tag ethereum/solc:build ethereum/solc:nightly;
- docker tag ethereum/solc:build ethereum/solc:nightly-"$version"-"$TRAVIS_COMMIT"
- docker push ethereum/solc:nightly-"$version"-"$TRAVIS_COMMIT";
- docker push ethereum/solc:nightly;
+ docker tag dexonfoundation/dsolc:build dexonfoundation/dsolc:nightly;
+ docker tag dexonfoundation/dsolc:build dexonfoundation/dsolc:nightly-"$version"-"$TRAVIS_COMMIT"
+ docker push dexonfoundation/dsolc:nightly-"$version"-"$TRAVIS_COMMIT";
+ docker push dexonfoundation/dsolc:nightly;
elif [ "$TRAVIS_TAG" = v"$version" ]
then
- docker tag ethereum/solc:build ethereum/solc:stable;
- docker tag ethereum/solc:build ethereum/solc:"$version";
- docker push ethereum/solc:stable;
- docker push ethereum/solc:"$version";
+ docker tag dexonfoundation/dsolc:build dexonfoundation/dsolc:stable;
+ docker tag dexonfoundation/dsolc:build dexonfoundation/dsolc:"$version";
+ docker push dexonfoundation/dsolc:stable;
+ docker push dexonfoundation/dsolc:"$version";
else
echo "Not publishing docker image from branch $TRAVIS_BRANCH or tag $TRAVIS_TAG"
fi