Skip to content

Commit

Permalink
Updating circleci config to user dockerhub auth
Browse files Browse the repository at this point in the history
  • Loading branch information
moz-astults committed Jun 21, 2021
1 parent 9c50585 commit 75f8009
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
build:
docker:
- image: docker:stable-git
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
working_directory: /dockerflow
steps:
- checkout
Expand Down Expand Up @@ -42,6 +45,9 @@ jobs:
test:
docker:
- image: docker:18.02.0-ce
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
steps:
- setup_remote_docker
- restore_cache:
Expand All @@ -57,6 +63,9 @@ jobs:
deploy:
docker:
- image: docker:18.02.0-ce
auth:
username: $DOCKER_USER
password: $DOCKER_PASS
steps:
- setup_remote_docker
- restore_cache:
Expand Down Expand Up @@ -105,4 +114,4 @@ workflows:
tags:
ignore: /addon-.*/
branches:
only: master
only: main

0 comments on commit 75f8009

Please sign in to comment.