We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f053f3a commit 0a6abb9Copy full SHA for 0a6abb9
.github/workflows/kubenetmon.yaml
@@ -52,6 +52,16 @@ jobs:
52
- name: Checkout repository
53
uses: actions/checkout@v4
54
55
+ - name: Set up Docker
56
+ uses: docker/setup-docker-action@v4
57
+ with:
58
+ daemon-config: |
59
+ {
60
+ "features": {
61
+ "containerd-snapshotter": true
62
+ }
63
64
+
65
- name: Determine Docker metadata
66
id: meta
67
uses: docker/metadata-action@v5
@@ -61,11 +71,15 @@ jobs:
71
type=sha
72
type=ref,event=tag
73
74
+ - name: Set up QEMU
75
+ uses: docker/setup-qemu-action@v3
76
77
- name: Build Docker image
78
id: build
79
uses: docker/build-push-action@v6
80
with:
68
81
context: .
82
+ platforms: linux/arm64,linux/amd64
69
83
push: false
70
84
tags: ${{ steps.meta.outputs.tags }}
85
labels: ${{ steps.meta.outputs.labels }}
0 commit comments