我在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
Run Code Online (Sandbox Code Playgroud)
请让我知道如何解决此问题。谢谢。我的CI管道代码:-
jobs:
- name: hello-world
plan:
- task: say-hello
config:
platform: linux
image: "docker:///ubuntu"
run:
path: echo
args: ["Hello, world!"]
Run Code Online (Sandbox Code Playgroud) continuous-integration pivotaltracker amazon-web-services docker concourse