dosubot[bot] commented on issue #8092: URL: https://github.com/apache/incubator-devlake/issues/8092#issuecomment-2369975032
<!-- Answer --> I found a similar issue that might help you resolve the "manifest not found" error. According to [this issue](https://github.com/apache/incubator-devlake/issues/7349), the error could be due to the image not being available at the specified registry. To resolve this, ensure that the image paths in your `docker-compose.yml` file are correct. The provided `docker-compose.yml` file uses the following image paths: ```yml image: devlake.docker.scarf.sh/apache/devlake-dashboard:v1.0.1 image: devlake.docker.scarf.sh/apache/devlake:v1.0.1 image: devlake.docker.scarf.sh/apache/devlake-config-ui:v1.0.1 ``` If these images are not found, it could be due to the images not being available at the specified registry or a typo in the image path. Verify that the images are available at `devlake.docker.scarf.sh` and that the version `v1.0.1` exists. If the images are not available at the specified registry, you may need to update the image paths to point to a valid registry where the images are hosted. For example, if the images are available on Docker Hub, you might update the paths like this: ```yml image: apache/devlake-dashboard:v1.0.1 image: apache/devlake:v1.0.1 image: apache/devlake-config-ui:v1.0.1 ``` Make sure to check the official Apache DevLake documentation or Docker Hub page for the correct image paths and versions <sup>[[1]](https://github.com/apache/incubator-devlake/blob/main/devops/releases/lake-v1.0.1/docker-compose.yml)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@devlake.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org