Dear Marco,
Here is a minimal configuration file to achieve this goal:
{
"Plugins" : [
"/usr/local/share/orthanc/plugins"
],
"RemoteAccessAllowed" : true,
"ServeFolders" : {
"html" : "/html"
}
}
With this configuration, the "ServeFolders" plugin will publish the content of the "/html/" volume that is mapped when invoking Docker.
For instance, if the configuration above is saved as "/tmp/orthanc.json" in the host, and if you want to publish the documentation of Xorg as found in a Debian-based distribution, you would call:
# sudo docker run -p 4242:4242 -p 8042:8042 --rm -v /tmp/orthanc.json:/etc/orthanc/orthanc.json:ro -v /usr/share/doc/xorg/:/html/:ro jodogne/orthanc
HTH,
Sébastien-