···1variable "UID" {
2 default = "1000"
3+ description = "User ID for the git and spindle users"
4}
56variable "GID" {
7 default = "1000"
8+ description = "Group ID for the git and spindle users"
0009}
1011+#
12+# Build the latest commit from the master branch
13+#
14+target "edge" {
15+ name = "${APP}-edge"
16 context = "."
17+ target = "${APP}"
18+ matrix = {
19+ APP = ["knot", "spindle"]
0020 }
00000021 args = {
22 TAG = "master"
23 UID = UID
24 GID = GID
25 }
26+ tags = ["tngl/${APP}:edge"]
27}
2829+#
30+# Build supported legacy releases
31+#
32target "all" {
33 name = "${APP}-${replace(TAG, ".", "-")}"
34 context = "."
+1-1
readme.md
···11There is a [repository](https://hub.docker.com/r/tngl) of pre-built images
12for tags starting at `v1.8.0-alpha` if you prefer.
1314-```
15docker pull tngl/knot:v1.10.0-alpha
16docker pull tngl/spindle:v1.10.0-alpha
17```
···11There is a [repository](https://hub.docker.com/r/tngl) of pre-built images
12for tags starting at `v1.8.0-alpha` if you prefer.
1314+```sh
15docker pull tngl/knot:v1.10.0-alpha
16docker pull tngl/spindle:v1.10.0-alpha
17```