From e60680038b7e9d2c7015473d75349ece5d9e35c8 Mon Sep 17 00:00:00 2001 From: tknzk Date: Mon, 19 Oct 2020 11:35:01 +0900 Subject: [PATCH] use docker authenticated pull --- .circleci/config.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 43affed..e1e7703 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,12 +5,21 @@ executors: ruby_2_7: docker: - image: rubylang/ruby:2.7.0-bionic + auth: + username: smarthrinc + password: $DOCKER_HUB_ACCESS_TOKEN ruby_2_6: docker: - image: rubylang/ruby:2.6.5-bionic + auth: + username: smarthrinc + password: $DOCKER_HUB_ACCESS_TOKEN ruby_2_5: docker: - image: rubylang/ruby:2.5.7-bionic + auth: + username: smarthrinc + password: $DOCKER_HUB_ACCESS_TOKEN commands: install_system_dependencies: