-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-bake.hcl
26 lines (22 loc) · 1006 Bytes
/
docker-bake.hcl
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
# Define the Docker Compose services block
# https://docs.docker.com/build/bake/reference/
####################################################################################################
# docker buildx bake --file docker-bake.hcl minicrawler --push --no-cache --progress=plain
####################################################################################################
target "minicrawler" {
context = "."
dockerfile = ".docker/Dockerfile"
target = "minicrawler"
platforms = ["linux/amd64", "linux/arm64"]
pull = true
tags = [
"dr.brzy.cz/testomato/minicrawler:latest",
"dr.brzy.cz/testomato/minicrawler:v5.2.6",
]
}
####################################################################################################
# docker buildx bake --file docker-bake.hcl --push --no-cache --progress=plain
####################################################################################################
group "default" {
targets = ["minicrawler"]
}