Skip to content

Commit 08dc86c

Browse files
committed
fix: update type to image to avoid push=true
see: https://docs.docker.com/reference/cli/docker/buildx/build/#output
1 parent 2d80a6e commit 08dc86c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docker-bake.hcl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ target "all" {
4545
"${GITHUB_REPO}:all"
4646
]
4747
platforms = ["linux/amd64", "linux/arm64"]
48-
output = ["type=registry"]
48+
output = ["type=image"]
4949
}
5050

5151
target "clang-tools" {
@@ -65,7 +65,7 @@ target "clang-tools" {
6565
"${GITHUB_REPO}:${tgt}"
6666
]
6767
platforms = ["linux/amd64", "linux/arm64"]
68-
output = ["type=registry"]
68+
output = ["type=image"]
6969
}
7070

7171
target "clang-tools" {
@@ -85,7 +85,7 @@ target "clang-tools" {
8585
"${GITHUB_REPO}:${tgt}"
8686
]
8787
platforms = ["linux/amd64", "linux/arm64"]
88-
output = ["type=registry"]
88+
output = ["type=image"]
8989
}
9090

9191
target "clang-tools" {
@@ -105,7 +105,7 @@ target "clang-tools" {
105105
"${GITHUB_REPO}:${tgt}"
106106
]
107107
platforms = ["linux/amd64", "linux/arm64"]
108-
output = ["type=registry"]
108+
output = ["type=image"]
109109
}
110110

111111
target "clang-tools" {
@@ -124,7 +124,7 @@ target "clang-tools" {
124124
"${GITHUB_REPO}:${tgt}"
125125
]
126126
platforms = ["linux/amd64", "linux/arm64"]
127-
output = ["type=registry"]
127+
output = ["type=image"]
128128
}
129129

130130
target "clang-tools" {
@@ -143,7 +143,7 @@ target "clang-tools" {
143143
"${GITHUB_REPO}:${tgt}"
144144
]
145145
platforms = ["linux/amd64", "linux/arm64"]
146-
output = ["type=registry"]
146+
output = ["type=image"]
147147
}
148148

149149
target "clang-tools" {
@@ -162,7 +162,7 @@ target "clang-tools" {
162162
"${GITHUB_REPO}:${tgt}"
163163
]
164164
platforms = ["linux/amd64", "linux/arm64"]
165-
output = ["type=registry"]
165+
output = ["type=image"]
166166
}
167167

168168
target "clang-tools" {
@@ -180,6 +180,6 @@ target "clang-tools" {
180180
"${DOCKER_REPO}:${tgt}",
181181
"${GITHUB_REPO}:${tgt}"
182182
]
183-
platforms = ["linux/amd64", "linux/arm64"]
184-
output = ["type=registry"]
183+
platforms = ["linux/amd64"]
184+
output = ["type=image"]
185185
}

0 commit comments

Comments
 (0)