File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,20 +14,37 @@ All Structurizr [commands](/commands) are free to use from these binaries except
1414
1515## Docker image
1616
17+ - Requires Docker
1718- Image name: [ structurizr/structurizr] ( https://hub.docker.com/r/structurizr/structurizr )
1819- Tags: ` latest ` for the most recent released version, ` preview ` for the most recent development build
1920
21+ Pull the latest version of the Docker image:
22+
2023```
2124docker pull structurizr/structurizr
25+ ```
26+
27+ Start Structurizr:
28+
29+ ```
2230docker run -it --rm -v $PWD:/usr/local/structurizr structurizr/structurizr <command> [parameters]
2331```
2432
2533In this example, ` $PWD ` will mount the current local directory as the working directory (mapped to ` /usr/local/structurizr ` in the Docker container).
2634
2735## Java .war file
2836
37+ - Requires Java 21
2938- Java .war file: [ structurizr-2026.03.06.war] ( https://download.structurizr.com/structurizr-2026.03.06.war )
3039
40+ Download the file, either by clicking the link above or via the command line:
41+
42+ ```
43+ curl -O https://download.structurizr.com/structurizr-2026.03.06.war
44+ ```
45+
46+ Start Structurizr:
47+
3148```
3249java -jar structurizr-2026.03.06.war <command> [parameters]
3350```
You can’t perform that action at this time.
0 commit comments