QuestDb docker 合成图像
QuestDb docker compose image
我应该为 docker 撰写的图片名称是什么?无法正常工作
Pulling questdb (questdb:)...
ERROR: The image for the service you're trying to recreate has been removed. If you continue, volume data could be lost. Consider backing up your data before continuing.
Continue with the new image? [yN]y
Pulling questdb (questdb:)...
ERROR: pull access denied for questdb, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
您正在尝试拉取 questdb
,但图像需要采用 <org>/<image>
:
格式
services:
questdb:
image: questdb/questdb
...
请在 following GitHub repository 中找到一个示例 docker-compose 图像,它显示了如何启动 Grafana 和 QuestDB 联网
我应该为 docker 撰写的图片名称是什么?无法正常工作
Pulling questdb (questdb:)...
ERROR: The image for the service you're trying to recreate has been removed. If you continue, volume data could be lost. Consider backing up your data before continuing.
Continue with the new image? [yN]y
Pulling questdb (questdb:)...
ERROR: pull access denied for questdb, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
您正在尝试拉取 questdb
,但图像需要采用 <org>/<image>
:
services:
questdb:
image: questdb/questdb
...
请在 following GitHub repository 中找到一个示例 docker-compose 图像,它显示了如何启动 Grafana 和 QuestDB 联网