Hi All,
I've setted up a plantuml server using the https://hub.docker.com/layers/plantuml/plantuml-server/v1.2021.12/images/sha256-97a4dc767b578630c715c5cca7302663b2e84fba6a061500997047cf655be0fc?context=explore docker image (also tried with the jetty image) and tried the C4 model provided in the getting started section of by https://github.com/plantuml-stdlib/C4-PlantUML
@startuml
!include https://raw.githubusercontent.com/plantuml-stdlib/C4-PlantUML/master/C4_Container.puml
Person(personAlias, "Label", "Optional Description")
Container(containerAlias, "Label", "Technology", "Optional Description")
System(systemAlias, "Label", "Optional Description")
Rel(personAlias, containerAlias, "Label", "Optional Technology")
@enduml
Result: https://ibb.co/1sLh9Cy
As you can see I have the error message "Unknown variable $tagStereo"
If I add a log directive, the example works:
@startuml
!log %version()
!include https://raw.githubusercontent.com/plantuml-stdlib/C4-PlantUML/master/C4_Container.puml
Person(personAlias, "Label", "Optional Description")
Container(containerAlias, "Label", "Technology", "Optional Description")
System(systemAlias, "Label", "Optional Description")
Rel(personAlias, containerAlias, "Label", "Optional Technology")
@enduml
Result: https://ibb.co/TKsLg67
Console output in the docker container:
https://ibb.co/DML6qqm
Any idea ?
Best regards,
Jérôme.