diff --git a/.circleci/config.yml b/.circleci/config.yml index 71b15422..5666d5a7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -53,13 +53,13 @@ jobs: key: gradle-cache-v2-{{ checksum "versions.props" }}-{{ checksum "build.gradle" }} - run: ./gradlew distTar - run: ./scripts/build_docker.sh - - run: docker run palantir/recipe-example-server:$(git describe --tags --always --first-parent) --help + - run: docker run palantirtechnologies/recipe-example-server:$(git describe --tags --always --first-parent) --help - deploy: command: | if [[ "${CIRCLE_BRANCH}" == "develop" || "${CIRCLE_TAG}" =~ [0-9]+(\.[0-9]+)+(-[a-zA-Z]+[0-9]*)* ]]; then docker login -u $DOCKER_HUB_USERNAME -p $DOCKER_HUB_PASSWORD - docker push palantir/recipe-example-server:$(git describe --tags --always --first-parent) - docker push palantir/recipe-example-server:latest + docker push palantirtechnologies/recipe-example-server:$(git describe --tags --always --first-parent) + docker push palantirtechnologies/recipe-example-server:latest fi workflows: diff --git a/scripts/build_docker.sh b/scripts/build_docker.sh index 0ce3d0d2..91b36116 100755 --- a/scripts/build_docker.sh +++ b/scripts/build_docker.sh @@ -13,6 +13,6 @@ tar -xf "./recipe-example-server/build/distributions/recipe-example-server-${VER cp ./recipe-example-server/var/conf/recipes.yml $DEST/recipe-example-server/var/conf cd $DEST -docker build -t "palantir/recipe-example-server:$VERSION" . -docker tag "palantir/recipe-example-server:$VERSION" "palantir/recipe-example-server:latest" +docker build -t "palantirtechnologies/recipe-example-server:$VERSION" . +docker tag "palantirtechnologies/recipe-example-server:$VERSION" "palantirtechnologies/recipe-example-server:latest"