I have been asked to deploy a PlantUML server on our Docker Enterprise server. I would like to then copy a style.puml file to the server which can be referenced in the code: e.g.:
@startuml
!include /plantuml/style/style.puml
Bob -> Alice : hello
@enduml
Could you advise where the bind mount should point to within the docker container? I've tried several locations e.g.: /var/lib/jetty/webapps/style but am unable to reference the file in code without receiving an error message:
cannot include /var/lib/jetty/webapps/style/style.puml
Thanks in advance