I'm trying to replicate a command for docker-compose for orthanc that I previously ran as a Docker command in the command line and I'm having some trouble translating it
The docker command is:
docker run -p 4242:4242 -p 8042:8042 -e OSIMIS_WEB_VIEWER1_PLUGIN_ENABLED=true --network=host --rm -v /orthanc.json:/etc/orthanc/orthanc.json:ro -v /tmp/orthanc-db/:/var/lib/orthanc/db/ osimis/orthanc
How can I translate this for docker-compose?