You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/design/clustering/README.md
+17
Original file line number
Diff line number
Diff line change
@@ -7,3 +7,20 @@ pip install seqdiag
7
7
```
8
8
9
9
Just call `make` to regenerate the diagrams.
10
+
11
+
## Building with Docker
12
+
If you are on a Mac or your pip install is messed up, you can easily build with docker.
13
+
14
+
```
15
+
make docker
16
+
```
17
+
18
+
The first run will be slow but things should be fast after that.
19
+
20
+
To clean up the docker containers that are created (and other cruft that is left around) you can run `make docker-clean`.
21
+
22
+
If you are using boot2docker and get warnings about clock skew (or if things aren't building for some reason) then you can fix that up with `make fix-clock-skew`.
23
+
24
+
## Automatically rebuild on file changes
25
+
26
+
If you have the fswatch utility installed, you can have it monitor the file system and automatically rebuild when files have changed. Just do a `make watch`.
0 commit comments