I have a docker-compose file like that :
version: "2"
services:
orthanc:
build: orthanc
restart: unless-stopped
ports: ["${PORT}:8042"]
volumes: ["orthanc-storage:/var/lib/orthanc/db:Z"]
[...]
volumes:
orthanc-storage:
1/ I can't understand how to define orthanc-storage
with something like C:/tmp/db
2/ what means the Z
?
Thank you for your answers