Skip to content

Commit 7ed9aa4

Browse files
Improves instructions.
1 parent 092779d commit 7ed9aa4

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

binaries.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff 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
```
2124
docker pull structurizr/structurizr
25+
```
26+
27+
Start Structurizr:
28+
29+
```
2230
docker run -it --rm -v $PWD:/usr/local/structurizr structurizr/structurizr <command> [parameters]
2331
```
2432

2533
In 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
```
3249
java -jar structurizr-2026.03.06.war <command> [parameters]
3350
```

0 commit comments

Comments
 (0)