Unable to find image 'logstash-test:latest' locally
时间: 2023-11-30 18:04:30 浏览: 131
This error message indicates that Docker is unable to find the specified image locally on your machine. You can try to pull the image from a Docker registry using the `docker pull` command:
```
docker pull logstash-test:latest
```
If the image is not available on a public registry, you may need to build the image locally using a Dockerfile.
阅读全文