tripal / tripal_doc

Official Documentation for the Tripal Platform
https://tripaldoc.readthedocs.io/en/latest/
GNU General Public License v3.0
2 stars 3 forks source link

README Docker Instructions fix #29

Closed Ferrisx4 closed 1 year ago

Ferrisx4 commented 1 year ago

The Docker-related instructions in the README.md need to be tweaked slightly: The current instruction is docker run --rm --volume=pwd:/tripal_doc tripaldocs:latest make html which results in the following error:

docker: Error response from daemon: pull access denied for tripaldocs, repository does not exist or may require 'docker login': denied: requested access to the resource is denied.

Changing the source to tripalproject/tripaldoc:latest allows the Docker to run and compile the documentation correctly using Sphinx, etc:

docker run --rm --volume=pwd:/tripal_doc tripalproject/tripaldoc:latest make html