Orthanc Docker configuration path

Hi,

I run OrthancDocker with host’s /etc/orthanc dir mapped to container’s.
I use multiples config files but only orthanc.json is read.
Is OrthancDocker image configured to run in single config file mode ?
Can you update it to use config dir instead ?

Thanks
Marc

Hello,

Thanks for the report, this is now fixed in GitHub.

The build is currently pending in DockerHub, it should be available within the next hour.
https://hub.docker.com/r/jodogne/orthanc/builds/

Sébastien-

Nice !
It works now, thank you.

Hi any idea why i cant invoke two commands together? I get a error when i want to use postgres and the edited json file as well

vadi01@ubuntu-512mb-nyc3-01:~$ sudo docker run -p 4242:4242 -p 8042:8042 --rm -v /tmp /tmp/orthanc.json:/etc/orthanc/orthanc.json:ro jodogne/orthanc-plugins
docker: invalid reference format.
See 'docker run --help'.

Looks like you have an extra "/tmp" argument. This will get bindmounted
as a local anonymous volume and your actual volume specification will
get interpreted as the image specification, hence the error. (Best
guess anyway.)