我在AWS上使用BOSH部署安装了Concourse CI。
成功安装后,我可以在浏览器上看到 Concourse CI。我使用 Concourse CI 官方页面创建了hello-world 管道:- http://concourse-ci.org/getting-started.html
但是,当我尝试为 hello-world 管道运行构建时,出现错误:-
Get https://registry-1.docker.io/v2: net/http: request canceled while waiting for connection
请让我知道如何解决此问题。在此先感谢。我的 CI 管道代码:-
jobs:
- name: hello-world
plan:
- task: say-hello
config:
platform: linux
image: "docker:///ubuntu"
run:
path: echo
args: ["Hello, world!"]