jodogne/orthanc-plugins:latest

Hi,
After downloading jodogne/orthanc-plugins:latest, how do I activate the plugin via the configuration.json file? I tried inserting this:

"OrthancExplorer2": {
  "Enable": true,
  "IsDefaultOrthancUI": true
}

as suggested in the documentation Orthanc Book, but it doesn’t work. Does anyone have any ideas?

Hi,

This should work if you save this file as orthanc.json:

{
    "Plugins": ["/usr/local/share/orthanc/plugins/libOrthancExplorer2.so"],
    "OrthancExplorer2" : {
        "Enable": true,
        "IsDefaultOrthancUI": true
    },
    "RemoteAccessAllowed": true
}

And then run

docker run -p 8042:8042 -v ./orthanc.json:/etc/orthanc/orthanc.json  jodogne/orthanc-plugins:latest

HTH,

Alain