File: config.hcl

package info (click to toggle)
docker-buildx 0.13.1%2Bds1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,356 kB
  • sloc: sh: 299; makefile: 87
file content (34 lines) | stat: -rw-r--r-- 433 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
group "default" {
	targets = ["db", "webapp"]
}

group "release" {
	targets = ["db", "webapp-plus"]
}

target "db" {
	context = "./"
	tags = ["docker.io/tonistiigi/db"]
}

target "webapp" {
	context = "./"
	dockerfile = "Dockerfile.webapp"
	args = {
		buildno = "123"
	}
}

target "cross" {
	platforms = [
		"linux/amd64",
		"linux/arm64"
	]
}

target "webapp-plus" {
	inherits = ["webapp", "cross"]
	args = {
		IAMPLUS = "true"
	}
}