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
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: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