Hi team, I'm getting the following errors when try...
# troubleshoot
b
Hi team, I'm getting the following errors when trying to run
./docker/dev-without-neo4j.sh
Copy code
Error response from daemon: manifest for linkedin/datahub-elasticsearch-setup:debug not found: manifest unknown: manifest unknown
Error response from daemon: manifest for linkedin/datahub-kafka-setup:debug not found: manifest unknown: manifest unknown
Error response from daemon: manifest for linkedin/datahub-frontend-react:debug not found: manifest unknown: manifest unknown
Seems like the corresponding docker images with the
debug
tag is missing on Docker Hub. Could anyone help?
b
Hmm - when you run with dev-without-neo4j we should be using locally built images. When you run the command, does it seem like Docker is indeed building these images locally?
You should subsequently see them when you run
docker image ls
For example,
Copy code
linkedin/datahub-frontend-react                                             debug                        a89f7e980461   12 days ago     109MB
linkedin/datahub-gms                                                        debug                        7683e3e93f2d   12 days ago     157MB
linkedin/datahub-kafka-setup                                                debug                        a45ac5a7ece7   12 days ago     522MB
b
Nope, it looked like it was pulling the images from Docker Hub. Anyway I realised that we needed to use Docker Compose V1. I had a fresh install of Docker and Docker Compose V2 was enabled by default. So the issue is resolved now 😄
b
Oh okay got it - thanks for following up Amanda!
g
Whew, this saved so much time for me today @brave-insurance-80044, thanks so much for sharing the fix!
The same issue arises if you activate an enterprise version of docker FWIW, and the docker V2 needs to be manually disabled
b
Glad it helped you!