···3636docker bake spindle
3737```
38383939-By default the `Dockerfile` will build the latest tag, but you can change it
4040-with the `TAG` build argument.
3939+By default this will build the latest tag, but you can target a specific tag
4040+like so:
41414242```sh
4343-docker bake --build-arg TAG=v1.10.0-alpha
4343+docker bake knot-v1-10-0-alpha spindle-v1-10-0-alpha
4444```
45454646-The command above for example will build the `v1.10.0-alpha` tag.
4646+The command above for example will build the `v1.10.0-alpha` tag for both the
4747+`knot` and `spindle`. They're expressed as individual bake targets, so you can
4848+also optionally specify just one to build at a specific version.
4949+5050+You can also build all tagged releases:
5151+5252+```sh
5353+docker bake releases
5454+```
47554856By default it will also create a `git` / `spindle` user with user and group ID 1000:1000,
4957but you can change it with the `UID` and `GID` build arguments.
50585159```sh
5252-docker bake --build-arg UID=$(id -u) --build-arg GID=$(id -g)
6060+docker bake UID=$(id -u) GID=$(id -g)
5361```
54625563The command above for example will create a user with the host user's UID and GID.
···62706371```sh
6472docker bake edge
6565-# or, with a specific target image
7373+#
7474+# or, with a specific target image...
7575+#
6676docker bake edge-knot
6777docker bake edge-spindle
6878```