I'm trying to follow this tutorial: https://hub.docker.com/r/opengrok/docker/
This is what I did:
mkdir /home/testuser/OpenGrokTest
cp -R SmallCppProject /home/testuser/OpenGrokTest/
docker pull opengrok/docker
docker run -d -v /home/testuser/OpenGrokTest/:/opengrok/src -p 8080:8080 opengrok/docker:latest
Now I can access opengrok using localhost:8080 and it is there:
However, as you can see there is nothing. The project is very small (just 5 cpp files) and I also waited ~15 minutes "just in case" but nothing changed.
I feel this is a very simple problem but tutorial is not mentioning any additional steps, so I don't know what's wrong.