Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Authenticate on pulls from Docker Hub #167

Merged
merged 1 commit into from
Oct 6, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ jobs:
python-2.7: &test-template
docker:
- image: circleci/python:2.7-stretch-node-browsers
auth:
username: dashautomation
password: $DASH_PAT_DOCKERHUB
environment:
PYTHON_VERSION: py27
PERCY_ENABLE: 1
Expand Down Expand Up @@ -57,6 +60,9 @@ jobs:
<<: *test-template
docker:
- image: circleci/python:3.6.9-stretch-node-browsers
auth:
username: dashautomation
password: $DASH_PAT_DOCKERHUB
environment:
PYTHON_VERSION: py36
PERCY_ENABLE: 0
Expand All @@ -65,6 +71,9 @@ jobs:
<<: *test-template
docker:
- image: circleci/python:3.7.6-stretch-node-browsers
auth:
username: dashautomation
password: $DASH_PAT_DOCKERHUB
environment:
PYTHON_VERSION: py37
PERCY_ENABLE: 0
Expand All @@ -73,6 +82,12 @@ workflows:
version: 2
build:
jobs:
- python-2.7
- python-3.6
- python-3.7
- python-2.7:
context:
- dash-docker-hub
- python-3.6:
context:
- dash-docker-hub
- python-3.7:
context:
- dash-docker-hub