Debian 上的 LibreOffice Online Docker
LibreOffice Online on Debian with Docker
我正在尝试在 debian 上在线安装 libreoffice(我可以根据需要更改 OS,但仍然 linux)和 docker 我尝试了我在 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。
有人可以帮我吗?
祝你有愉快的一天。
Pull an image from Docker Hub
To download a particular image, or set of images (i.e., a repository), use docker pull
. If no tag is provided, Docker Engine uses the :latest
tag as a default.
正如您在 hub.docker.com/r/libreoffice/online/tags 看到的(错误消息也这么说),这张图片没有 latest
标签。尝试:
docker pull libreoffice/online:master
我正在尝试在 debian 上在线安装 libreoffice(我可以根据需要更改 OS,但仍然 linux)和 docker 我尝试了我在 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。
有人可以帮我吗?
祝你有愉快的一天。
Pull an image from Docker Hub
To download a particular image, or set of images (i.e., a repository), use
docker pull
. If no tag is provided, Docker Engine uses the:latest
tag as a default.
正如您在 hub.docker.com/r/libreoffice/online/tags 看到的(错误消息也这么说),这张图片没有 latest
标签。尝试:
docker pull libreoffice/online:master