Hi folks, I am using Orthanc with Docker and docker-compose, and I have a question regarding logs. Fist of all, these are my files.
In blue the Dockerfile.
FROM jodogne/orthanc-plugins:latest
ADD orthanc.json /etc/orthanc/orthanc.json
EXPOSE 8042
EXPOSE 4242
Afterwards this Dockerfile is run using a docker-compose file (in red) like this:
…
orthanc:
image: orthanc:193
container_name: orthanc
env_file: ./Orthanc/environment.env
volumes:
- ./volumes/orthanc-db/:/var/lib/orthanc/db/
build:
context: ./Orthanc
dockerfile: Dockerfile
ports: - “8042:8042”
- “4242:4242”
restart: unless-stopped
…
Thus, with docker-compose up --build -d, Orthanc (and all other services in the compose file) runs.
So, I would like to know, is it possible to run jodogne/orthanc-plugins in verbose mode in the context described in the preceding lines?
Thanks in advance.
Ezequiel.