Skip to content

Commit a493982

Browse files
committed
chore: use aws official docker mirror registry
Signed-off-by: Arjun Rajappa <[email protected]>
1 parent 9f6f43d commit a493982

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.circleci/config.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,36 +38,36 @@ library_gemfile: &library_gemfile
3838
executors:
3939
ruby_33_lint:
4040
docker:
41-
- image: cimg/ruby:3.3-node
41+
- image: public.ecr.aws/docker/library/ruby:3.4
4242
base:
4343
parameters:
4444
ruby_version:
4545
type: string
4646
default: "3.1"
4747
docker:
48-
- image: cimg/ruby:<<parameters.ruby_version>>
48+
- image: public.ecr.aws/docker/library/ruby:<<parameters.ruby_version>>
4949
environment:
5050
MEMCACHED_HOST: '127.0.0.1:11211'
5151
REDIS_URL: 'redis://127.0.0.1:6379'
5252
DATABASE_URL: 'sqlite3::memory:'
53-
- image: memcached
54-
- image: redis
55-
- image: amazon/dynamodb-local
56-
- image: minio/minio:latest
53+
- image: public.ecr.aws/docker/library/memcached
54+
- image: public.ecr.aws/docker/library/redis
55+
- image: public.ecr.aws/aws-dynamodb-local/aws-dynamodb-local
56+
- image: public.ecr.aws/bitnami/minio:latest
5757
command: ["server", "/data"]
58-
- image: s12v/sns
59-
- image: softwaremill/elasticmq-native
60-
- image: mongo:5-focal
58+
- image: public.ecr.aws/redbox-public/s12v/sns:latest
59+
- image: public.ecr.aws/redbox-public/softwaremill/elasticmq-native
60+
- image: public.ecr.aws/docker/library/mongo:5-focal
6161
mysql2:
6262
parameters:
6363
ruby_version:
6464
type: string
6565
default: "3.1"
6666
docker:
67-
- image: cimg/ruby:<<parameters.ruby_version>>
67+
- image: public.ecr.aws/docker/library/ruby:<<parameters.ruby_version>>
6868
environment:
6969
DATABASE_URL: "mysql2://[email protected]:3306/ci_test"
70-
- image: mariadb
70+
- image: public.ecr.aws/docker/library/mariadb
7171
environment:
7272
MYSQL_DATABASE: 'ci_test'
7373
MYSQL_USER: 'root'
@@ -81,10 +81,10 @@ executors:
8181
type: string
8282
default: "3.1"
8383
docker:
84-
- image: cimg/ruby:<<parameters.ruby_version>>
84+
- image: public.ecr.aws/docker/library/ruby:<<parameters.ruby_version>>
8585
environment:
8686
DATABASE_URL: "postgres://postgres:[email protected]:5432/ci_test"
87-
- image: postgres
87+
- image: public.ecr.aws/docker/library/postgres
8888
environment:
8989
POSTGRES_PASSWORD: 'test'
9090
POSTGRES_DB: 'ci_test'

0 commit comments

Comments
 (0)