I am trying to pull and run the graphdb-workbench
image from docker hub using the following command:
docker run -d -p 8080:80 -e GRAPHDB_URL=127.0.0.1:7200 graphdb-workbench
I get the following error :
Unable to find image 'graphdb-workbench:latest' locally docker: Error response from daemon: pull access denied for graphdb-workbench, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.
How can i fix this ?
Thank you !
You can use the following image : dhlabbasel/graphdb-free
Afte you start the container, you can access the workbench on
http://localhost:7200
Explanation
There are both official and user published images on docker hub.
ubuntu:latest
.logx7/sqlplus:latest
You can search for images on https://hub.docker.com/. You'll not find an official image by the name
graphdb-workbench
. Searching for graphdb returns many results (For user published images, go with the most popular one if you can). Accessing the image page (repository), You'll find information about usage and configuration.