我正在尝试从public repository构建一个泊坞窗图像。实际上我之前已成功构建它,今天我想将图像更新为最新图像,所以我删除了旧图像,并试图拉出新图像。
然而,当我尝试
时$ docker pull dockerfile/ghost
Pulling repository dockerfile/ghost
FATA[0001] Error: image dockerfile/ghost:latest not found
我无法理解为什么它不起作用,它本应该起作用。
答案 0 :(得分:3)
This is what you need
使用 docker pull ghost 。
答案 1 :(得分:0)
谢谢,@邯郸。我按照他的建议通过
找到了问题docker logs container_id
首先,错误是
错误:无法激活casper,因为它当前不是 安装。
所以我下载了casper并将其放入主题文件夹。
其次,错误是
迁移:版本003的最新版Ghost正在运行 开发...收听127.0.0.1:2368 Url配置为: http://localhost:2368
因为ghost服务器正在开发模式下运行。所以我把它作为生产模式。
第三,通过使其进入生产模式,出现错误
错误:无法访问Ghost的内容路径:
所以我按照指令编辑/path/to/ghost/blog/config.js并将路径部分从开发复制到生产。然后重启容器。
docker restart some-ghost
最后它起作用了
答案 2 :(得分:0)
替换
docker pull dockerfile/ubuntu
与
docker pull ubuntu
同样在Dockerfile中进行基本图像拉取,替换
FROM dockerfile/ubuntu
与
FROM ubuntu
将ubuntu更改为您需要的任何其他图像名称