-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
support public.ecr.aws #322
Comments
additionally, the command to get credentials from ECR into docker have changed
|
Is there any development in this? Seems like pushing public image is not working:
|
The [simplest/most-common?] use-case for public ECR instead of Docker Hub (subject to rate-limits):
If @gdamjan's sleuthing is correct, that RegEx constraint should definitely be relaxed in order for a simple pipeline (below) to work, rt? docker-image-resource/assets/out Line 232 in 273da71
simple pipeline---
resources:
- name: node-image
type: registry-image
source:
tag: lts-gallium
repository: public.ecr.aws/docker/library/node
[...]
jobs:
- name: my-job
plan:
- task: use-node-image
image: node-image
config: [...] |
AWS has introduced public ECR registries, and when configured the url of the registry is
public.ecr.aws
. The same url is used for both push and pull.docker-image-resource currently won't supply AWS credentials unless it matches the ECR regex
https://github.com/concourse/docker-image-resource/blob/master/assets/out#L232
https://aws.amazon.com/about-aws/whats-new/2020/12/announcing-amazon-ecr-public-and-amazon-ecr-public-gallery/
The text was updated successfully, but these errors were encountered: