Skip to content

Commit

Permalink
Omit the "v" in version string for docker deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
CatEars committed Dec 14, 2019
1 parent 888c6ec commit 0029225
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ jobs:
cd ../backend
npm ci
./print_rev_info.sh > revinfo.txt
docker build . -t catears/private-note:$CIRCLE_BRANCH -f dockerfile-private-note
docker build . -t catears/private-note:${CIRCLE_BRANCH:1} -f dockerfile-private-note
echo "$DOCKER_PASSWORD" | docker login --username $DOCKER_USERNAME --password-stdin
docker push catears/private-note:$CIRCLE_BRANCH
docker push catears/private-note:${CIRCLE_BRANCH:1}
test-frontend:
docker:
Expand Down

0 comments on commit 0029225

Please sign in to comment.