I installed Concourse CI using BOSH deployment on AWS.
After successful installation i am able to see Concourse CI on browser.I have created hello-world pipeline using Concourse CI official page :- http://concourse-ci.org/getting-started.html
But when I am trying to run build for hello-world pipeline i am getting error :-
Get https://registry-1.docker.io/v2: net/http: request canceled while waiting for connection
Please let me know how i can fix this issue.Thanks in advance. My CI Pipeline code :-
jobs:
- name: hello-world
plan:
- task: say-hello
config:
platform: linux
image: "docker:///ubuntu"
run:
path: echo
args: ["Hello, world!"]