VHP4Safety / cloud

VHP4Safety Cloud Service Catalog
https://cloud.vhp4safety.nl/
0 stars 1 forks source link

[BUG / MISSING] Using default tag: latest Error response from daemon: manifest for bigcatum/bridgedb:latest not found: manifest unknown: manifest unknown #26

Open Maddocent opened 1 year ago

Maddocent commented 1 year ago

When pulling the BridgeDb Docker image from here, following the instructions gives this error:

#Install

docker pull bigcatum/bridgedb

#or
#At the moment, this docker image is being developed and refined, and has the 'development' tag. To pull this docker image #and test it, use the following command

docker pull bigcatum/bridgedb:development

#Running

sudo docker run -p 8183:8183 -p 8080:8080 bigcatum/bridgedb

gives:


Using default tag: latest
Error response from daemon: manifest for bigcatum/bridgedb:latest not found: manifest unknown: manifest unknown
marvinm2 commented 1 year ago

I updated the instructions to remove that whole "development" part. Also, there is an environment variable now that is required, also added in the instructions.

I have no clue why the "bigcatum/bridgedb:latest" does not work... It works for me, although I need to add "sudo" before every docker command. I added that to the instructions just in case, but that doesn't appear to be the reason in your test

ozancinar commented 1 year ago

It might be because of that there were no container tagged as "latest" two weeks ago when this issue was opened. I believe this is not an issue at the moment, as there is a latest tag here. Note that the command that needs to be run is also different as can be seen here.

The command docker run -d -p 8080:8080 -p 8183:8183 -e SERVER_URL='http://localhost:8183' bigcatum/bridgedb worked for me.

marvinm2 commented 1 year ago

Ignore my latest comment slightly. I now indeed noticed this issue was 2 weeks ago, and not today. It should work normally now. Can you try and confirm?