我正试图在debian上安装libreoffice (如果必要的话,我可以更改操作系统,但仍然使用linux),我尝试了在docker集线器上找到的这个映像:
https://hub.docker.com/r/libreoffice/online/
docker pull libreoffice/online。
但是:当我使用这个命令时,
Using default tag: latest
Error response from daemon: manifest for libreoffice/online:latest not found如果有人有同样的问题,我会在网上搜索,但我什么也没发现。
对不起,如果我写了一些不好的东西,我还在学习linux。
有人能帮帮我吗?
祝您今天愉快。
发布于 2019-01-10 09:50:04
从码头集线器中提取图像 要下载特定的映像或图像集(即存储库),请使用
docker pull。如果没有提供标记,Docker将使用:latest标记作为默认值。
正如您在Hub.docker.com/r/libreoffice/online/tag上看到的(错误消息也是这么说的),这个图像没有latest标记。尝试:
docker pull libreoffice/online:masterhttps://stackoverflow.com/questions/54125807
复制相似问题