我正在尝试将Docker镜像(公共)推入Cloud Foundry,但得到了 以下错误消息。
FAILED
Error restarting application: Server error, status code: 500, error code: 170011, message: Stager error: Failed to open TCP connection to stager.service.cf.internal:8888 (getaddrinfo: Name or service not known)
答案 0 :(得分:0)
我遇到了同样的问题,CF根据关键文档安装了bosh-lite。
命令:
cf enable-feature-flag diego_docker
cf push app1 -o localhost:5000/app1:1
docker注册表设置:
docker pull registry:2
docker run --name reg2 -d --restart=always -p 5000:5000 registry:2
docker image app1标记并推送没有任何问题。