When I tried to run `docker/dev.sh`, I got the fol...
# all-things-deployment
a
When I tried to run
docker/dev.sh
, I got the following error. It looks like the
debug
tag no longer exists for the image.
Copy code
Error response from daemon: manifest for linkedin/datahub-kafka-setup:debug not found: manifest unknown: manifest unknown
https://hub.docker.com/r/linkedin/datahub-kafka-setup/tags?page=1&name=debug I found that the
debug
tag is also missing for
datahub-frontend-react
and
datahub-elasticsearch-setup
images. Does anyone know how to work around this?
s
Can you please attempt to disable docker V2 manually and then re-run this?
a
Thank you @square-activity-64562! That was indeed the problem.
I am curious why I cannot see the
debug
tag for
linkedin/datahub-kafka-setup
in docker hub. I can see it for gms.
s
They should not be present there either way. Maybe someone pushed them by mistake
Is this also solved now with Docker v1 https://github.com/datahub-project/datahub/issues/5441?
a
Let me try
@square-activity-64562 got same error and below is my docker-compose version.
Copy code
$ docker-compose --version
docker-compose version 1.29.2, build 5becea4c
s
Are you in some private network perhaps with limit to internet?
a
No
It pulls other dependencies fine, just node. I think the problem is probably because it is looking for
/node-v16.8.0-linux-aarch64.tar.gz
and it doesn't exist.
I think it is fine to add
-PuseSystemNode=${USE_SYSTEM_NODE}
on the following line because the image already has node (line 12). https://github.com/datahub-project/datahub/blob/d28e18147c7604491080fbb5dd8c6b9a3e6f5205/docker/datahub-frontend/Dockerfile#L24
f
I got the same error when ran docker/dev.sh. Is there any fix on this problem? Update: NVM. I’ve solved it.