Skip to content

Commit 1d33182

Browse files
authored
feat: create multiarch docker images using buildx (#226)
1 parent 9340cff commit 1d33182

File tree

1 file changed

+33
-5
lines changed

1 file changed

+33
-5
lines changed

.goreleaser.yml

+33-5
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,43 @@ builds:
1111
- arm64
1212

1313
dockers:
14-
- image_templates:
15-
- "hipages/php-fpm_exporter:latest"
16-
- "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}.{{ .Patch }}"
17-
- "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}"
18-
- "hipages/php-fpm_exporter:{{ .Major }}"
14+
- use: buildx
15+
goos: linux
16+
goarch: amd64
17+
image_templates:
18+
- "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-amd64"
1919
build_flag_templates:
20+
- "--platform=linux/amd64"
2021
- "--build-arg=VERSION={{.Version}}"
2122
- "--build-arg=BUILD_DATE={{.Date}}"
2223
- "--build-arg=VCS_REF={{.FullCommit}}"
24+
- use: buildx
25+
goos: linux
26+
goarch: arm64
27+
image_templates:
28+
- "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-arm64"
29+
build_flag_templates:
30+
- "--platform=linux/arm64/v8"
31+
- "--build-arg=VERSION={{.Version}}"
32+
- "--build-arg=BUILD_DATE={{.Date}}"
33+
- "--build-arg=VCS_REF={{.FullCommit}}"
34+
docker_manifests:
35+
- name_template: "hipages/php-fpm_exporter:latest"
36+
image_templates:
37+
- "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-amd64"
38+
- "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-arm64"
39+
- name_template: "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}.{{ .Patch }}"
40+
image_templates:
41+
- "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-amd64"
42+
- "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-arm64"
43+
- name_template: "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}"
44+
image_templates:
45+
- "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-amd64"
46+
- "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-arm64"
47+
- name_template: "hipages/php-fpm_exporter:{{ .Major }}"
48+
image_templates:
49+
- "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-amd64"
50+
- "hipages/php-fpm_exporter:{{ .Major }}.{{ .Minor }}.{{ .Patch }}-arm64"
2351

2452
changelog:
2553
filters:

0 commit comments

Comments
 (0)