我应该为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发布于 2021-04-14 17:08:42
您正在尝试拉取questdb,但图像的格式必须为<org>/<image>
services:
questdb:
image: questdb/questdb
...请在following GitHub repository中找到示例docker-compose图像,其中显示了如何启动Grafana和QuestDB的网络连接
https://stackoverflow.com/questions/67062725
复制相似问题