从私有注册表中提取图像的语法是什么?
我正在尝试使用API重现以下命令:
docker pull localhost:5000/oillio/my_app:1.0-SNAPSHOT
看起来我很想使用images / create call。有4个参数,fromImage,fromSrc,repo,tag和registry。我不能为我的生活弄清楚如何设置这些参数来重现上述命令。
答案 0 :(得分:4)
类似的东西对我有用:
curl -X POST localhost:2375/images/create?fromImage=localhost:5000/oillio/my_app&tag=1.0-SNAPSHOT
localhost:2375
是我的私人服务器