From fbdea62ba620e1273bce9a2aa2fbbc61ae1fb3ea Mon Sep 17 00:00:00 2001 From: Matt Stratton Date: Wed, 4 Nov 2020 14:14:36 -0600 Subject: Add docker auth to circle config (#295) --- .circleci/config.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 84d8025..299c504 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,6 +3,9 @@ jobs: build: docker: - image: cibuilds/hugo:0.76.5 + auth: + username: mattstratton + password: $DOCKERHUB_PASSWORD working_directory: ~/castanet steps: @@ -14,6 +17,9 @@ jobs: test-blue-grid: docker: - image: cibuilds/hugo:0.76.5 + auth: + username: mattstratton + password: $DOCKERHUB_PASSWORD working_directory: ~/castanet steps: @@ -25,6 +31,9 @@ jobs: test-blue-row-jumbo-false: docker: - image: cibuilds/hugo:0.76.5 + auth: + username: mattstratton + password: $DOCKERHUB_PASSWORD working_directory: ~/castanet steps: @@ -36,6 +45,9 @@ jobs: test-blue-row-jumbo-true: docker: - image: cibuilds/hugo:0.76.5 + auth: + username: mattstratton + password: $DOCKERHUB_PASSWORD working_directory: ~/castanet steps: @@ -47,6 +59,9 @@ jobs: test-blue-row-no-jumbo: docker: - image: cibuilds/hugo:0.76.5 + auth: + username: mattstratton + password: $DOCKERHUB_PASSWORD working_directory: ~/castanet steps: @@ -58,6 +73,9 @@ jobs: test-orange-grid: docker: - image: cibuilds/hugo:0.76.5 + auth: + username: mattstratton + password: $DOCKERHUB_PASSWORD working_directory: ~/castanet steps: @@ -69,6 +87,9 @@ jobs: test-orange-row: docker: - image: cibuilds/hugo:0.76.5 + auth: + username: mattstratton + password: $DOCKERHUB_PASSWORD working_directory: ~/castanet steps: @@ -80,6 +101,9 @@ jobs: test-orange-row-jumbo: docker: - image: cibuilds/hugo:0.76.5 + auth: + username: mattstratton + password: $DOCKERHUB_PASSWORD working_directory: ~/castanet steps: @@ -91,6 +115,9 @@ jobs: test-grey-grid: docker: - image: cibuilds/hugo:0.76.5 + auth: + username: mattstratton + password: $DOCKERHUB_PASSWORD working_directory: ~/castanet steps: @@ -102,6 +129,9 @@ jobs: test-grey-row: docker: - image: cibuilds/hugo:0.76.5 + auth: + username: mattstratton + password: $DOCKERHUB_PASSWORD working_directory: ~/castanet steps: @@ -113,6 +143,9 @@ jobs: test-grey-row-jumbo: docker: - image: cibuilds/hugo:0.76.5 + auth: + username: mattstratton + password: $DOCKERHUB_PASSWORD working_directory: ~/castanet steps: -- cgit v1.2.3