···36docker bake spindle
37```
3839-By default the `Dockerfile` will build the latest tag, but you can change it
40-with the `TAG` build argument.
4142```sh
43-docker bake --build-arg TAG=v1.10.0-alpha
44```
4546-The command above for example will build the `v1.10.0-alpha` tag.
000000004748By default it will also create a `git` / `spindle` user with user and group ID 1000:1000,
49but you can change it with the `UID` and `GID` build arguments.
5051```sh
52-docker bake --build-arg UID=$(id -u) --build-arg GID=$(id -g)
53```
5455The command above for example will create a user with the host user's UID and GID.
···6263```sh
64docker bake edge
65-# or, with a specific target image
0066docker bake edge-knot
67docker bake edge-spindle
68```
···36docker bake spindle
37```
3839+By default this will build the latest tag, but you can target a specific tag
40+like so:
4142```sh
43+docker bake knot-v1-10-0-alpha spindle-v1-10-0-alpha
44```
4546+The command above for example will build the `v1.10.0-alpha` tag for both the
47+`knot` and `spindle`. They're expressed as individual bake targets, so you can
48+also optionally specify just one to build at a specific version.
49+50+You can also build all tagged releases:
51+52+```sh
53+docker bake releases
54+```
5556By default it will also create a `git` / `spindle` user with user and group ID 1000:1000,
57but you can change it with the `UID` and `GID` build arguments.
5859```sh
60+docker bake UID=$(id -u) GID=$(id -g)
61```
6263The command above for example will create a user with the host user's UID and GID.
···7071```sh
72docker bake edge
73+#
74+# or, with a specific target image...
75+#
76docker bake edge-knot
77docker bake edge-spindle
78```