我正在尝试构建OwnCloud桌面客户端,the Owncloud docs解释了应该使用docker:
Assuming you are in the root of the ownCloud Client’s source tree,you
can build an image from this Dockerfile like this:
cd admin/win32/docker
docker build . -t ownCloud-client-win32:
我用这个确切的命令得到一个错误,所以在the docker build docs之后我把点移到了最后.但后来我收到以下错误:
$docker build -t ownCloud-client-win32:2.1 .
invalid value "ownCloud-client-win32:2.1" for flag -t: Error parsing reference: "ownCloud-client-win32:2.1" is not a valid repository/tag
See 'docker build --help'.
为什么ownCloud-client-win32:2.1不是有效的标签名称?
然后我尝试运行docker build.,它运行成功,但最后我得到了一张未标记的图像.
有谁知道如何解决这个问题?
PS.我不知道它是否重要,但相关Dockerfile is here.
最佳答案
没有大写字母.尝试:owncloud-client-win32:2.1
原文链接:https://www.f2er.com/docker/435958.html